From 411c4035784b0294794b8bb34dce974f799e0757 Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Mon, 24 Jul 2023 12:53:03 +0200 Subject: usercode with all personal data --- ..._usercode_email_usercode_first_name_and_more.py | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 client/migrations/0016_usercode_branca_usercode_email_usercode_first_name_and_more.py (limited to 'client/migrations/0016_usercode_branca_usercode_email_usercode_first_name_and_more.py') diff --git a/client/migrations/0016_usercode_branca_usercode_email_usercode_first_name_and_more.py b/client/migrations/0016_usercode_branca_usercode_email_usercode_first_name_and_more.py new file mode 100644 index 0000000..9e31cf3 --- /dev/null +++ b/client/migrations/0016_usercode_branca_usercode_email_usercode_first_name_and_more.py @@ -0,0 +1,35 @@ +# Generated by Django 4.1.5 on 2023-07-24 10:14 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('auth', '0012_alter_user_first_name_max_length'), + ('client', '0015_hidegroup'), + ] + + operations = [ + migrations.AddField( + model_name='usercode', + name='branca', + field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.PROTECT, to='auth.group'), + ), + migrations.AddField( + model_name='usercode', + name='email', + field=models.CharField(default='', max_length=250), + ), + migrations.AddField( + model_name='usercode', + name='first_name', + field=models.CharField(default='', max_length=250), + ), + migrations.AddField( + model_name='usercode', + name='last_name', + field=models.CharField(default='', max_length=250), + ), + ] -- cgit v1.2.1