# Generated by Django 3.1.7 on 2021-03-11 19:17 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('byostorage', '0002_auto_20210311_1826'), ] operations = [ migrations.AlterField( model_name='userstorage', name='name', field=models.SlugField(help_text='Storage tag', max_length=20, unique=True), ), migrations.AlterField( model_name='userstorage', name='storage', field=models.CharField(choices=[('django.core.files.storage.FileSystemStorage', 'django.core.files.storage.FileSystemStorage')], help_text='Storage class for this instance', max_length=255), ), ]