39 lines
1.6 KiB
Python
39 lines
1.6 KiB
Python
# Generated by Django 2.2 on 2020-08-31 10:15
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0007_auto_20200825_1248'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='is_parent',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='first_name',
|
|
field=models.CharField(blank=True, max_length=30, verbose_name='first name'),
|
|
),
|
|
migrations.CreateModel(
|
|
name='Family',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('first_name', models.CharField(max_length=120)),
|
|
('last_name', models.CharField(max_length=120)),
|
|
('phone', models.CharField(blank=True, max_length=60, null=True)),
|
|
('address', models.CharField(blank=True, max_length=60, null=True)),
|
|
('email', models.EmailField(blank=True, max_length=254, null=True)),
|
|
('relation_ship', models.TextField(blank=True, choices=[('Father', 'Father'), ('Mother', 'Mother'), ('Brother', 'Brother'), ('Sister', 'Sister'), ('Grand mother', 'Grand mother'), ('Grand father', 'Grand father'), ('Other', 'Other')])),
|
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
),
|
|
]
|