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/taxonomy/migrations | |
parent | 9cdfb6ec377fa534c1203c1af46662c2a1ff6f61 (diff) |
added new posts stuff and changed name of src posts
Diffstat (limited to 'app/taxonomy/migrations')
-rw-r--r-- | app/taxonomy/migrations/0002_auto_20191007_0913.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/taxonomy/migrations/0002_auto_20191007_0913.py b/app/taxonomy/migrations/0002_auto_20191007_0913.py new file mode 100644 index 0000000..fb53007 --- /dev/null +++ b/app/taxonomy/migrations/0002_auto_20191007_0913.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.6 on 2019-10-07 09:13 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('taxonomy', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='category', + options={'verbose_name': 'Category', 'verbose_name_plural': 'Categories'}, + ), + ] |