29 lines
911 B
Python
29 lines
911 B
Python
# Generated by Django 3.1.1 on 2020-09-30 12:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('input', '0007_library'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='IFG',
|
|
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)),
|
|
('cost', models.CharField(max_length=10)),
|
|
('notes', models.CharField(max_length=500)),
|
|
('url', models.CharField(max_length=400)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
]
|