File diff 843b24c63ab7 → 457e5739f717
www/conservancy/apps/staff/migrations/0001_initial.py
Show inline comments
 
new file 100644
 
# -*- coding: utf-8 -*-
 
# Generated by Django 1.10.7 on 2021-11-28 21:12
 
from __future__ import unicode_literals
 

	
 
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',
 
            },
 
        ),
 
    ]