X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5dbd487fb7e64aa968da9c3fcbe8a0215d2b3298..2d538a50605add2666172861744229599487f1b2:/src/depot/migrations/0004_shopbookpublish_shop.py diff --git a/src/depot/migrations/0004_shopbookpublish_shop.py b/src/depot/migrations/0004_shopbookpublish_shop.py new file mode 100644 index 00000000..d908f75d --- /dev/null +++ b/src/depot/migrations/0004_shopbookpublish_shop.py @@ -0,0 +1,21 @@ +# Generated by Django 4.1.9 on 2023-08-10 18:36 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ("depot", "0003_shop_rename_legimibookpublish_shopbookpublish_and_more"), + ] + + operations = [ + migrations.AddField( + model_name="shopbookpublish", + name="shop", + field=models.ForeignKey( + null=True, on_delete=django.db.models.deletion.SET_NULL, to="depot.shop" + ), + ), + ]