Skip to content

Commit

Permalink
add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Oct 7, 2020
1 parent 85d5fff commit 0c9d5b9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
19 changes: 19 additions & 0 deletions app/marketing/migrations/0021_auto_20201007_1153.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 2.2.4 on 2020-10-07 11:53

import datetime
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('marketing', '0020_auto_20200925_0944'),
]

operations = [
migrations.AlterField(
model_name='upcomingdate',
name='last_modified',
field=models.DateTimeField(db_index=True, default=datetime.datetime(2020, 10, 7, 11, 52, 56, 242963)),
),
]
18 changes: 18 additions & 0 deletions app/townsquare/migrations/0024_auto_20201007_1153.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.4 on 2020-10-07 11:53

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('townsquare', '0023_auto_20200907_0657'),
]

operations = [
migrations.AlterField(
model_name='announcement',
name='key',
field=models.CharField(choices=[('townsquare', 'townsquare'), ('header', 'header'), ('footer', 'footer'), ('founders_note_daily_email', 'founders_note_daily_email'), ('grants', 'grants')], db_index=True, max_length=50),
),
]

0 comments on commit 0c9d5b9

Please sign in to comment.