27 lines
952 B
Python
27 lines
952 B
Python
# Generated by Django 3.0.4 on 2020-03-25 23:00
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0006_auto_20200325_1655'),
|
|
('organizer', '0002_agcontacts'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='AGPassword',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(default='', max_length=200)),
|
|
('compass', models.CharField(default='', max_length=200)),
|
|
('link', models.CharField(default='', max_length=200)),
|
|
('agency', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='users.Agency')),
|
|
('visibleby', models.ManyToManyField(blank=True, to='users.AgencyGroup')),
|
|
],
|
|
),
|
|
]
|