Skip to content

Commit

Permalink
add missing mig
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Jul 28, 2020
1 parent d17125b commit 769c4ba
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions app/dashboard/migrations/0133_auto_20200728_1114.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 2.2.4 on 2020-07-28 11:14

import datetime
from django.db import migrations, models
from django.utils.timezone import utc


class Migration(migrations.Migration):

dependencies = [
('dashboard', '0132_auto_20200728_1112'),
]

operations = [
migrations.AlterField(
model_name='tribessubscription',
name='expires_on',
field=models.DateTimeField(blank=True, default=datetime.datetime(2021, 7, 28, 11, 14, 15, 141105, tzinfo=utc), null=True),
),
]
20 changes: 20 additions & 0 deletions app/dashboard/migrations/0134_auto_20200728_1114.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 2.2.4 on 2020-07-28 11:14

import datetime
from django.db import migrations, models
from django.utils.timezone import utc


class Migration(migrations.Migration):

dependencies = [
('dashboard', '0133_auto_20200728_1114'),
]

operations = [
migrations.AlterField(
model_name='tribessubscription',
name='expires_on',
field=models.DateTimeField(blank=True, default=datetime.datetime(2021, 7, 28, 11, 14, 29, 64698, tzinfo=utc), null=True),
),
]

0 comments on commit 769c4ba

Please sign in to comment.