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/taxonomy/migrations | |
parent | 8024ee33de61150b8dad3c0b15952bf54ff45e1a (diff) |
added new category model
Diffstat (limited to 'app/taxonomy/migrations')
-rw-r--r-- | app/taxonomy/migrations/0003_category_pluralized_name.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/taxonomy/migrations/0003_category_pluralized_name.py b/app/taxonomy/migrations/0003_category_pluralized_name.py new file mode 100644 index 0000000..a8c9586 --- /dev/null +++ b/app/taxonomy/migrations/0003_category_pluralized_name.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.2 on 2020-04-07 13:35 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('taxonomy', '0002_auto_20191007_0913'), + ] + + operations = [ + migrations.AddField( + model_name='category', + name='pluralized_name', + field=models.CharField(max_length=60, null=True), + ), + ] |