diff --git a/byostorage/migrations/0002_auto_20210312_1712.py b/byostorage/migrations/0002_auto_20210312_1712.py new file mode 100644 index 0000000..b680386 --- /dev/null +++ b/byostorage/migrations/0002_auto_20210312_1712.py @@ -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), + ), + ]