Skip to content

Commit

Permalink
the missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
NachE committed May 25, 2023
1 parent 9ca44da commit 82a78f7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions django_walletpass/migrations/0008_alter_pass_data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.19 on 2023-05-25 13:39

from django.db import migrations, models
import django_walletpass.storage


class Migration(migrations.Migration):

dependencies = [
('django_walletpass', '0007_auto_20190613_1807'),
]

operations = [
migrations.AlterField(
model_name='pass',
name='data',
field=models.FileField(storage=django_walletpass.storage.WalletPassStorage(), upload_to='uploads/passes/%Y/%m/%d/'),
),
]

0 comments on commit 82a78f7

Please sign in to comment.