diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-20 15:18:22 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-20 15:18:22 +0000 |
commit | 9ebc666f819897aac04e9bc529a39fb40ee7abfb (patch) | |
tree | b9ef935a7f9be6bc96a0ce206badf1f5ffa4469c /ctrack/users/migrations/0005_auto_20200120_1051.py | |
parent | 52a0a7570f55a4d60e67f384a97148df153ae5f7 (diff) |
Playing around with User model
Diffstat (limited to 'ctrack/users/migrations/0005_auto_20200120_1051.py')
-rw-r--r-- | ctrack/users/migrations/0005_auto_20200120_1051.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/users/migrations/0005_auto_20200120_1051.py b/ctrack/users/migrations/0005_auto_20200120_1051.py new file mode 100644 index 0000000..d00df8f --- /dev/null +++ b/ctrack/users/migrations/0005_auto_20200120_1051.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.9 on 2020-01-20 10:51 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0004_auto_20200120_1026'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='email', + field=models.EmailField(blank=True, max_length=254, verbose_name='email address'), + ), + ] |