diff options
Diffstat (limited to 'app/posts/migrations/0003_alter_post_date_last_pub.py')
-rw-r--r-- | app/posts/migrations/0003_alter_post_date_last_pub.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/posts/migrations/0003_alter_post_date_last_pub.py b/app/posts/migrations/0003_alter_post_date_last_pub.py new file mode 100644 index 0000000..f19c142 --- /dev/null +++ b/app/posts/migrations/0003_alter_post_date_last_pub.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.2 on 2023-07-10 18:59 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0002_alter_post_body'), + ] + + operations = [ + migrations.AlterField( + model_name='post', + name='date_last_pub', + field=models.DateField(), + ), + ] |