forgotten migration
This commit is contained in:
parent
8d4010702a
commit
7336fd1c71
1 changed files with 23 additions and 0 deletions
23
sdbs_pile/pile/migrations/0003_auto_20200318_2201.py
Normal file
23
sdbs_pile/pile/migrations/0003_auto_20200318_2201.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Generated by Django 3.0.4 on 2020-03-18 21:01
|
||||
|
||||
import django.core.files.storage
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pile', '0002_auto_20200317_2357'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='document',
|
||||
options={'ordering': ['-id']},
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='document',
|
||||
name='file',
|
||||
field=models.FileField(blank=True, null=True, storage=django.core.files.storage.FileSystemStorage(location='docs'), upload_to=''),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue