diff options
author | luxagraf <sng@luxagraf.net> | 2019-10-07 15:27:00 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-10-07 15:27:00 -0400 |
commit | 4fec1159612fad17a7385ba8aadc4a4b165d5aa9 (patch) | |
tree | d413ea25e7c09efb29c4e80b8ffb3ca7c229a514 /app/posts/migrations/0008_post_topics.py | |
parent | 9cdfb6ec377fa534c1203c1af46662c2a1ff6f61 (diff) |
added new posts stuff and changed name of src posts
Diffstat (limited to 'app/posts/migrations/0008_post_topics.py')
-rw-r--r-- | app/posts/migrations/0008_post_topics.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/posts/migrations/0008_post_topics.py b/app/posts/migrations/0008_post_topics.py new file mode 100644 index 0000000..cd867d8 --- /dev/null +++ b/app/posts/migrations/0008_post_topics.py @@ -0,0 +1,19 @@ +# Generated by Django 2.2.6 on 2019-10-07 09:49 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('taxonomy', '0002_auto_20191007_0913'), + ('posts', '0007_auto_20191007_0949'), + ] + + operations = [ + migrations.AddField( + model_name='post', + name='topics', + field=models.ManyToManyField(blank=True, to='taxonomy.Category'), + ), + ] |