add workplace option

This commit is contained in:
Alicja Cięciwa
2020-12-28 19:05:08 +01:00
parent 884e877933
commit 3503eb94e8
15 changed files with 128 additions and 23 deletions

View File

@@ -0,0 +1,20 @@
# 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)),
],
),
]