Skip to content
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.

Commit

Permalink
refactor: modify migrations files
Browse files Browse the repository at this point in the history
  • Loading branch information
satya7289 committed Jul 21, 2020
1 parent 7179e2d commit c4cb5d4
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion systers_portal/blog/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

import ckeditor.fields
from django.db import migrations, models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

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

dependencies = [
('blog', '0001_initial'),
('users', '0001_initial'),
('community', '0001_initial'),
('users', '0001_initial'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion systers_portal/common/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

from django.db import migrations, models

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

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

dependencies = [
('common', '0001_initial'),
('users', '0001_initial'),
('contenttypes', '0002_remove_content_type_name'),
('users', '0001_initial'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion systers_portal/community/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

import ckeditor.fields
from django.db import migrations, models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

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

dependencies = [
('users', '0001_initial'),
('community', '0001_initial'),
('cities_light', '0006_compensate_for_0003_bytestring_bug'),
('cities_light', '0009_add_subregion'),
('users', '0001_initial'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion systers_portal/meetup/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

import ckeditor.fields
from django.db import migrations, models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

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

dependencies = [
('meetup', '0001_initial'),
('cities_light', '0009_add_subregion'),
('users', '0001_initial'),
('cities_light', '0006_compensate_for_0003_bytestring_bug'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion systers_portal/membership/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

from django.db import migrations, models

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

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

dependencies = [
('users', '0001_initial'),
('community', '0001_initial'),
('membership', '0001_initial'),
('community', '0001_initial'),
('users', '0001_initial'),
]

operations = [
Expand Down
4 changes: 2 additions & 2 deletions systers_portal/users/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.0 on 2020-07-08 16:09
# Generated by Django 3.0.8 on 2020-07-21 18:28

from django.conf import settings
from django.db import migrations, models
Expand All @@ -11,7 +11,7 @@ class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('cities_light', '0006_compensate_for_0003_bytestring_bug'),
('cities_light', '0009_add_subregion'),
]

operations = [
Expand Down

0 comments on commit c4cb5d4

Please sign in to comment.