Rebuild migrations again

This commit is contained in:
Jens Langhammer
2018-11-25 12:31:11 +01:00
parent 28557806c5
commit 2a3107ea3c
8 changed files with 13 additions and 44 deletions

View File

@ -1,4 +1,4 @@
# Generated by Django 2.1.3 on 2018-11-22 10:03
# Generated by Django 2.1.3 on 2018-11-25 10:39
import uuid
@ -92,6 +92,7 @@ class Migration(migrations.Migration):
('name', models.TextField()),
('launch_url', models.URLField(blank=True, null=True)),
('icon_url', models.TextField(blank=True, null=True)),
('skip_authorization', models.BooleanField(default=False)),
('provider', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.SET_DEFAULT, to='passbook_core.Provider')),
],
options={
@ -128,7 +129,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='rulemodel',
name='rules',
field=models.ManyToManyField(to='passbook_core.Rule'),
field=models.ManyToManyField(blank=True, to='passbook_core.Rule'),
),
migrations.AddField(
model_name='usersourceconnection',