0.4.4: Django 3.0 support, actions.export_as_csv_action added.
[fnpdjango.git] / tests / migrations / 0001_initial.py
1 # Generated by Django 2.2.11 on 2020-03-26 13:53
2
3 from django.db import migrations, models
4 import fnpdjango.storage
5
6
7 class Migration(migrations.Migration):
8
9     initial = True
10
11     dependencies = [
12     ]
13
14     operations = [
15         migrations.CreateModel(
16             name='SomeModel',
17             fields=[
18                 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
19                 ('attachment', models.FileField(null=True, storage=fnpdjango.storage.BofhFileSystemStorage(), upload_to='test')),
20             ],
21         ),
22     ]