Skip to content

Commit

Permalink
Recreate migrations for updated models
Browse files Browse the repository at this point in the history
  • Loading branch information
djanderson committed May 15, 2019
1 parent 28b2aab commit 6c21c29
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/acquisitions/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.7 on 2019-05-08 06:12
# Generated by Django 2.2.1 on 2019-05-15 20:55

from django.db import migrations, models
import jsonfield.fields
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.7 on 2019-05-08 06:12
# Generated by Django 2.2.1 on 2019-05-15 20:55

from django.db import migrations, models
import django.db.models.deletion
Expand Down
5 changes: 2 additions & 3 deletions src/authentication/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.7 on 2019-05-08 06:12
# Generated by Django 2.2.1 on 2019-05-15 20:55

import django.contrib.auth.models
import django.contrib.auth.validators
Expand All @@ -11,7 +11,7 @@ class Migration(migrations.Migration):
initial = True

dependencies = [
('auth', '0009_alter_user_last_name_max_length'),
('auth', '0011_update_proxy_permissions'),
]

operations = [
Expand All @@ -29,7 +29,6 @@ class Migration(migrations.Migration):
('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')),
('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')),
('email', models.EmailField(max_length=254, null=True)),
('server_url', models.URLField(blank=True, help_text='URL of server if account belongs to a sensor manager', null=True, verbose_name='Server URL')),
('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.Group', verbose_name='groups')),
('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.Permission', verbose_name='user permissions')),
],
Expand Down
7 changes: 2 additions & 5 deletions src/results/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.7 on 2019-05-08 06:12
# Generated by Django 2.2.1 on 2019-05-15 20:55

from django.db import migrations, models
import django.db.models.deletion
Expand Down Expand Up @@ -27,10 +27,7 @@ class Migration(migrations.Migration):
],
options={
'ordering': ('task_id',),
'unique_together': {('schedule_entry', 'task_id')},
},
),
migrations.AlterUniqueTogether(
name='taskresult',
unique_together={('schedule_entry', 'task_id')},
),
]
2 changes: 1 addition & 1 deletion src/schedule/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.7 on 2019-05-08 06:12
# Generated by Django 2.2.1 on 2019-05-15 20:55

from django.conf import settings
import django.core.validators
Expand Down
2 changes: 1 addition & 1 deletion src/status/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.7 on 2019-05-08 06:12
# Generated by Django 2.2.1 on 2019-05-15 20:55

from django.db import migrations, models

Expand Down

0 comments on commit 6c21c29

Please sign in to comment.