diff options
author | luxagraf <sng@luxagraf.net> | 2019-09-14 08:36:11 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-09-14 08:36:11 -0400 |
commit | e4dca5792a9ef843ae5a1f35a8166551747f33f2 (patch) | |
tree | 6fe206a45ca430544c6e6ea6898df0e7ee555e22 /app/guides/migrations/0002_remove_guide_category.py | |
parent | aca44010b0d34cc83491be7ef3a0de147598cc0b (diff) |
Worked on guides, moved some templates to app/dir
Diffstat (limited to 'app/guides/migrations/0002_remove_guide_category.py')
-rw-r--r-- | app/guides/migrations/0002_remove_guide_category.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/guides/migrations/0002_remove_guide_category.py b/app/guides/migrations/0002_remove_guide_category.py new file mode 100644 index 0000000..76eefa6 --- /dev/null +++ b/app/guides/migrations/0002_remove_guide_category.py @@ -0,0 +1,17 @@ +# Generated by Django 2.1.7 on 2019-07-04 12:05 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('guides', '0001_initial'), + ] + + operations = [ + migrations.RemoveField( + model_name='guide', + name='category', + ), + ] |