diff options
author | lxf <sng@luxagraf.net> | 2021-10-28 21:51:52 -0400 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2021-10-28 21:51:52 -0400 |
commit | a97d88467dd85c3cdccff0552e9447886d49f18c (patch) | |
tree | 104ebe8733ce90649b7df072d72da812c88d5d46 /app | |
parent | b03082dd8a0262eefc6082c2b4d2d45d9ad044ef (diff) |
lttr: made migrations
Diffstat (limited to 'app')
-rw-r--r-- | app/lttr/migrations/0022_postcardsubscriber.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/lttr/migrations/0022_postcardsubscriber.py b/app/lttr/migrations/0022_postcardsubscriber.py new file mode 100644 index 0000000..965bc81 --- /dev/null +++ b/app/lttr/migrations/0022_postcardsubscriber.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.7 on 2021-10-28 21:51 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('lttr', '0021_auto_20210324_1352'), + ] + + operations = [ + migrations.CreateModel( + name='PostcardSubscriber', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('date_created', models.DateTimeField(auto_now_add=True)), + ('date_updated', models.DateTimeField(auto_now=True)), + ('address', models.TextField()), + ('name', models.CharField(max_length=120)), + ], + ), + ] |