Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit 000dd93

Browse files
committed
added migration for private media storage in banking example
1 parent a565434 commit 000dd93

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated by Django 3.0.6 on 2020-06-06 13:25
2+
3+
import backend.storage_backends
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('banking', '0004_transaction_source_file'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='statementfile',
16+
name='statement_file',
17+
field=models.FileField(storage=backend.storage_backends.PrivateMediaStorage, upload_to='banking'),
18+
),
19+
]

0 commit comments

Comments
 (0)