0.8.2 migrations raus
This commit is contained in:
parent
77a18cadb0
commit
89246852ed
|
|
@ -1,26 +0,0 @@
|
|||
# Generated by Django 3.0.4 on 2020-03-22 19:57
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
('users', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='QuickLinks',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=200)),
|
||||
('link', models.CharField(max_length=200)),
|
||||
('logo', models.ImageField(blank=True, default='agencymain/linkdefault.png', upload_to='agencymain')),
|
||||
('agency', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='users.Agency')),
|
||||
],
|
||||
),
|
||||
]
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
# Generated by Django 3.0.4 on 2020-03-25 19:04
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0006_auto_20200325_1655'),
|
||||
('organizer', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='AGContacts',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('first_name', models.CharField(default='', max_length=200)),
|
||||
('last_name', models.CharField(default='', max_length=200)),
|
||||
('mail', models.CharField(default='', max_length=200)),
|
||||
('phone1', models.CharField(default='', max_length=200)),
|
||||
('phone2', models.CharField(default='', max_length=200)),
|
||||
('street', models.CharField(blank=True, default='', max_length=200)),
|
||||
('city', models.CharField(blank=True, default='', max_length=200)),
|
||||
('plz', models.CharField(blank=True, default='', max_length=5)),
|
||||
('desc', models.TextField(blank=True, max_length=3000)),
|
||||
('agency', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='users.Agency')),
|
||||
],
|
||||
),
|
||||
]
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
# 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')),
|
||||
],
|
||||
),
|
||||
]
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
# Generated by Django 3.0.4 on 2020-03-25 23:02
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('organizer', '0003_agpassword'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='agpassword',
|
||||
name='usernname',
|
||||
field=models.CharField(default='', max_length=200),
|
||||
),
|
||||
]
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
# Generated by Django 3.0.4 on 2020-03-25 23:05
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('organizer', '0004_agpassword_usernname'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='agpassword',
|
||||
old_name='usernname',
|
||||
new_name='agpass_username',
|
||||
),
|
||||
]
|
||||
Loading…
Reference in New Issue