30 lines
995 B
Python
30 lines
995 B
Python
|
# Generated by Django 3.1.1 on 2020-09-30 11:45
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('input', '0006_honorarycertificate'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Library',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('realname', models.CharField(max_length=200, null=True)),
|
||
|
('email', models.CharField(max_length=200, null=True)),
|
||
|
('username', models.CharField(max_length=200, null=True)),
|
||
|
('library', models.CharField(max_length=200)),
|
||
|
('cost', models.CharField(max_length=10)),
|
||
|
('duration', models.CharField(max_length=100)),
|
||
|
('notes', models.CharField(max_length=500)),
|
||
|
],
|
||
|
options={
|
||
|
'abstract': False,
|
||
|
},
|
||
|
),
|
||
|
]
|