diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-13 16:41:31 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-13 16:41:31 +0100 |
commit | f1bcac0499c5e6202b3ddd0661052d14b5b53f87 (patch) | |
tree | 674a0ba62d3534c6a646fbc2decd39b015035da1 /ctrack/users | |
parent | aa343e46247b6a55bd0d26dad1d0b9dabaf04851 (diff) |
created a form for new Simple Event
Diffstat (limited to 'ctrack/users')
-rw-r--r-- | ctrack/users/migrations/0002_auto_20201013_1250.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/users/migrations/0002_auto_20201013_1250.py b/ctrack/users/migrations/0002_auto_20201013_1250.py new file mode 100644 index 0000000..0ce36be --- /dev/null +++ b/ctrack/users/migrations/0002_auto_20201013_1250.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-10-13 12:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='first_name', + field=models.CharField(blank=True, max_length=150, verbose_name='first name'), + ), + ] |