Pre release

This commit is contained in:
Tris 2021-03-22 10:13:44 +11:00
parent 7334271f68
commit d0f09d2f3f

View File

@ -0,0 +1,18 @@
# Generated by Django 3.1.1 on 2021-03-12 06:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('byostorage', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='userstorage',
name='storage',
field=models.CharField(choices=[('django.core.files.storage.FileSystemStorage', 'django.core.files.storage.FileSystemStorage'), ('storages.backends.s3boto3.S3Boto3Storage', 'storages.backends.s3boto3.S3Boto3Storage')], help_text='Storage class for this instance', max_length=255),
),
]