summaryrefslogtreecommitdiff
path: root/app/deals/migrations/0013_deal_brand.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-06-30 15:10:01 -0500
committerluxagraf <sng@luxagraf.net>2023-06-30 15:10:01 -0500
commit3d2cc4ef62465699ccc09747c65fb117e11502e9 (patch)
treec74c781bcb04131595c5a5c3a42c6944a4aeb0ff /app/deals/migrations/0013_deal_brand.py
parent194eccad7db0c16c36c48e2e5958dd25c1154437 (diff)
seperated out brands and made buttons to copy code
Diffstat (limited to 'app/deals/migrations/0013_deal_brand.py')
-rw-r--r--app/deals/migrations/0013_deal_brand.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/deals/migrations/0013_deal_brand.py b/app/deals/migrations/0013_deal_brand.py
new file mode 100644
index 0000000..e1430fa
--- /dev/null
+++ b/app/deals/migrations/0013_deal_brand.py
@@ -0,0 +1,19 @@
+# Generated by Django 4.2.2 on 2023-06-30 12:59
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('deals', '0012_rename_brand_deal_brand_str'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='deal',
+ name='brand',
+ field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='deals.brand'),
+ ),
+ ]