29 lines
937 B
Python
29 lines
937 B
Python
# Generated by Django 1.10.7 on 2021-11-28 21:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Person',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('username', models.CharField(max_length=20)),
|
|
('formal_name', models.CharField(max_length=200)),
|
|
('casual_name', models.CharField(max_length=200)),
|
|
('currently_employed', models.BooleanField(default=True)),
|
|
('date_created', models.DateTimeField(auto_now_add=True)),
|
|
('date_last_modified', models.DateTimeField(auto_now=True)),
|
|
],
|
|
options={
|
|
'verbose_name_plural': 'people',
|
|
},
|
|
),
|
|
]
|