27 lines
832 B
Python
27 lines
832 B
Python
# Generated by Django 2.2.7 on 2019-12-02 17:34
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('users', '0038_auto_20191202_1757'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Areas',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(blank=True, max_length=200)),
|
|
('color', models.CharField(blank=True, max_length=60)),
|
|
('desc', models.CharField(blank=True, max_length=3000)),
|
|
('agency', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='users.Agency')),
|
|
],
|
|
),
|
|
]
|