Skip to content
Snippets Groups Projects
Commit 11871d53 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-21: Recreating initial migration with latest changes

parent 85d1a139
No related branches found
No related tags found
1 merge request!24GREG-21: Various model updates
# Generated by Django 3.2.5 on 2021-08-17 08:34 # Generated by Django 3.2.5 on 2021-08-19 08:52
import datetime import datetime
import dirtyfields.dirtyfields import dirtyfields.dirtyfields
...@@ -73,10 +73,10 @@ class Migration(migrations.Migration): ...@@ -73,10 +73,10 @@ class Migration(migrations.Migration):
('updated', models.DateTimeField(auto_now=True)), ('updated', models.DateTimeField(auto_now=True)),
('first_name', models.CharField(max_length=256)), ('first_name', models.CharField(max_length=256)),
('last_name', models.CharField(max_length=256)), ('last_name', models.CharField(max_length=256)),
('date_of_birth', models.DateField()), ('date_of_birth', models.DateField(null=True)),
('email', models.EmailField(max_length=254)), ('email', models.EmailField(blank=True, max_length=254)),
('email_verified_date', models.DateField(null=True)), ('email_verified_date', models.DateField(null=True)),
('mobile_phone', models.CharField(max_length=15)), ('mobile_phone', models.CharField(blank=True, max_length=15)),
('mobile_phone_verified_date', models.DateField(null=True)), ('mobile_phone_verified_date', models.DateField(null=True)),
('registration_completed_date', models.DateField(null=True)), ('registration_completed_date', models.DateField(null=True)),
('token', models.CharField(blank=True, max_length=32)), ('token', models.CharField(blank=True, max_length=32)),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment