diff options
author | luxagraf <sng@luxagraf.net> | 2024-01-17 11:35:54 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-01-17 11:35:54 -0500 |
commit | d573ecad14301886c5b3ef72ce5639e33384574c (patch) | |
tree | 59debfe87f27bc62bbbc9f9deb5a07e4a71f83b8 /app/gtd/migrations | |
parent | ad2d2ceda8d57836c92586f8c4069bce61f8de62 (diff) |
gtd: added category
Diffstat (limited to 'app/gtd/migrations')
-rw-r--r-- | app/gtd/migrations/0027_wiredpost_category.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/gtd/migrations/0027_wiredpost_category.py b/app/gtd/migrations/0027_wiredpost_category.py new file mode 100644 index 0000000..e814331 --- /dev/null +++ b/app/gtd/migrations/0027_wiredpost_category.py @@ -0,0 +1,20 @@ +# Generated by Django 4.2.7 on 2024-01-17 11:28 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('taxonomy', '0007_alter_luxtag_slug_alter_taggeditems_content_type_and_more'), + ('gtd', '0026_alter_wiredpost_post_status'), + ] + + operations = [ + migrations.AddField( + model_name='wiredpost', + name='category', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='taxonomy.category'), + ), + ] |