# Generated by Django 3.1.2 on 2020-12-28 17:31 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('work', '0003_auto_20201228_1744'), ] operations = [ migrations.CreateModel( name='WorkplaceInput', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('workplace', models.CharField(max_length=100)), ], ), ]