19 lines
626 B
Python
19 lines
626 B
Python
# 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),
|
|
),
|
|
]
|