django-byostorage/byostorage/migrations/0002_auto_20210312_1712.py
2021-03-22 10:13:44 +11:00

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),
),
]