Compare commits

...

3 Commits

Author SHA1 Message Date
Laurent Morvillier faa8d41ed3 add migration 8 months ago
Laurent Morvillier 79b1e6e8b7 update prod payload 8 months ago
Laurent Morvillier 990a0c0c97 adds tmp dir 8 months ago
  1. 1
      .gitignore
  2. 2
      payload.txt
  3. 28
      subscriptions/migrations/0009_rename_offer_discount_type_assnotification_offerdiscounttype_and_more.py

1
.gitignore vendored

@ -3,6 +3,7 @@
pokeranalytics_backend/settings_local.py pokeranalytics_backend/settings_local.py
myenv/ myenv/
static/ static/
tmp/
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/

File diff suppressed because one or more lines are too long

@ -0,0 +1,28 @@
# Generated by Django 5.1.6 on 2025-02-28 11:11
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('subscriptions', '0008_alter_assnotification_signeddate'),
]
operations = [
migrations.RenameField(
model_name='assnotification',
old_name='offer_discount_type',
new_name='offerDiscountType',
),
migrations.RenameField(
model_name='assnotification',
old_name='offer_identifier',
new_name='offerIdentifier',
),
migrations.RenameField(
model_name='assnotification',
old_name='offer_type',
new_name='offerType',
),
]
Loading…
Cancel
Save