diff options
author | luxagraf <sng@luxagraf.net> | 2020-04-12 15:50:39 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-04-12 15:50:39 -0400 |
commit | dbe6b6221e980a0fd45aaccd268532ab6500c9df (patch) | |
tree | 8dbca75a620d0663d498d18f76630dc0985740d5 /app/posts/migrations | |
parent | 8024ee33de61150b8dad3c0b15952bf54ff45e1a (diff) |
added new category model
Diffstat (limited to 'app/posts/migrations')
-rw-r--r-- | app/posts/migrations/0009_auto_20200407_1347.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/posts/migrations/0009_auto_20200407_1347.py b/app/posts/migrations/0009_auto_20200407_1347.py new file mode 100644 index 0000000..0f736b9 --- /dev/null +++ b/app/posts/migrations/0009_auto_20200407_1347.py @@ -0,0 +1,28 @@ +# Generated by Django 2.1.2 on 2020-04-07 13:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0008_post_topics'), + ] + + operations = [ + migrations.AddField( + model_name='post', + name='has_code', + field=models.BooleanField(blank=True, default=False), + ), + migrations.AlterField( + model_name='post', + name='post_type', + field=models.IntegerField(choices=[(0, 'field test'), (1, 'review'), (2, 'essay'), (3, 'src')], default=0), + ), + migrations.AlterField( + model_name='post', + name='short_title', + field=models.CharField(blank=True, max_length=200, null=True), + ), + ] |