Skip to content

Commit

Permalink
* Third times the charm.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroff committed Nov 21, 2018
1 parent c0b618c commit 7cf648c
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions django_kala/auth/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0.8 on 2018-11-21 03:41
# Generated by Django 2.0.8 on 2018-11-21 03:46

import auth.models
import django.contrib.auth.validators
Expand Down Expand Up @@ -47,8 +47,8 @@ class Migration(migrations.Migration):
('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')),
],
options={
'ordering': ['first_name', 'last_name'],
'db_table': 'kala_user',
'ordering': ['first_name', 'last_name'],
},
managers=[
('objects', auth.models.KalaUserManager()),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0.8 on 2018-11-21 03:41
# Generated by Django 2.0.8 on 2018-11-21 03:46

from django.db import migrations, models

Expand All @@ -8,8 +8,8 @@ class Migration(migrations.Migration):
initial = True

dependencies = [
('kala_auth', '0001_initial'),
('auth', '0011_auto_20181002_0231'),
('kala_auth', '0001_initial'),
('organizations', '0001_initial'),
]

Expand Down
6 changes: 3 additions & 3 deletions django_kala/documents/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0.8 on 2018-11-21 03:41
# Generated by Django 2.0.8 on 2018-11-21 03:46

from django.db import migrations, models
import django.db.models.deletion
Expand Down Expand Up @@ -26,8 +26,8 @@ class Migration(migrations.Migration):
('uuid', models.UUIDField(db_index=True, default=uuid.uuid4, editable=False, unique=True)),
],
options={
'ordering': ['-date', 'name'],
'db_table': 'kala_documents',
'ordering': ['-date', 'name'],
},
),
migrations.CreateModel(
Expand All @@ -52,8 +52,8 @@ class Migration(migrations.Migration):
],
options={
'get_latest_by': 'created',
'ordering': ['name', 'created'],
'db_table': 'kala_document_version',
'ordering': ['name', 'created'],
},
),
]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0.8 on 2018-11-21 03:41
# Generated by Django 2.0.8 on 2018-11-21 03:46

from django.conf import settings
from django.db import migrations, models
Expand All @@ -10,9 +10,9 @@ class Migration(migrations.Migration):
initial = True

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('documents', '0001_initial'),
('auth', '0011_auto_20181002_0231'),
('documents', '0001_initial'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0.8 on 2018-11-21 03:41
# Generated by Django 2.0.8 on 2018-11-21 03:46

from django.db import migrations, models
import django.db.models.deletion
Expand All @@ -10,9 +10,9 @@ class Migration(migrations.Migration):
initial = True

dependencies = [
('projects', '0001_initial'),
('taggit', '0002_auto_20150616_2121'),
('documents', '0002_auto_20181121_0341'),
('projects', '0001_initial'),
('documents', '0002_auto_20181121_0346'),
]

operations = [
Expand Down
6 changes: 3 additions & 3 deletions django_kala/organizations/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0.8 on 2018-11-21 03:41
# Generated by Django 2.0.8 on 2018-11-21 03:46

from django.conf import settings
from django.db import migrations, models
Expand All @@ -13,8 +13,8 @@ class Migration(migrations.Migration):
initial = True

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('auth', '0011_auto_20181002_0231'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = [
Expand All @@ -39,8 +39,8 @@ class Migration(migrations.Migration):
('is_active', models.BooleanField(default=True)),
],
options={
'ordering': ['name'],
'db_table': 'kala_companies',
'ordering': ['name'],
},
),
migrations.CreateModel(
Expand Down
8 changes: 4 additions & 4 deletions django_kala/projects/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0.8 on 2018-11-21 03:41
# Generated by Django 2.0.8 on 2018-11-21 03:46

from django.conf import settings
import django.contrib.postgres.fields.jsonb
Expand All @@ -13,10 +13,10 @@ class Migration(migrations.Migration):
initial = True

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('taggit', '0002_auto_20150616_2121'),
('auth', '0011_auto_20181002_0231'),
('taggit', '0002_auto_20150616_2121'),
('organizations', '0001_initial'),
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]

operations = [
Expand Down Expand Up @@ -53,8 +53,8 @@ class Migration(migrations.Migration):
('tags', taggit.managers.TaggableManager(blank=True, help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags')),
],
options={
'ordering': ('name',),
'db_table': 'kala_projects',
'ordering': ('name',),
},
),
migrations.CreateModel(
Expand Down

0 comments on commit 7cf648c

Please sign in to comment.