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

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SanketDG committed Jul 25, 2020
1 parent 48cd42c commit 8110f63
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 80 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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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'),
('community', '0001_initial'),
('users', '0001_initial'),
('community', '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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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

dependencies = [
('common', '0001_initial'),
('contenttypes', '0002_remove_content_type_name'),
('users', '0001_initial'),
('common', '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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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', '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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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

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

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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

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

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

operations = [
Expand Down
13 changes: 12 additions & 1 deletion systers_portal/users/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.0.8 on 2020-07-21 18:28
# Generated by Django 3.0.8 on 2020-07-24 20:45

from django.conf import settings
from django.db import migrations, models
Expand Down Expand Up @@ -26,4 +26,15 @@ class Migration(migrations.Migration):
('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
],
),
migrations.CreateModel(
name='UserSetting',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('weekly_digest', models.BooleanField(default=True, verbose_name='Receive Weekly Digests from Communities')),
('location_change', models.BooleanField(default=False, verbose_name='Get Notified on Change in Location for Meetups')),
('time_change', models.BooleanField(default=False, verbose_name='Get Notified on Change in Timings for Meetups')),
('reminder', models.BooleanField(default=False, verbose_name="Get Reminders for rsvp'd Meetups")),
('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to='users.SystersUser')),
],
),
]
27 changes: 0 additions & 27 deletions systers_portal/users/migrations/0002_usersetting.py

This file was deleted.

35 changes: 0 additions & 35 deletions systers_portal/users/migrations/0003_auto_20200722_1126.py

This file was deleted.

0 comments on commit 8110f63

Please sign in to comment.