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 Jul 28, 2020
1 parent 985aa7e commit d17125b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/dashboard/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
BountySyncRequest, CoinRedemption, CoinRedemptionRequest, Coupon, Earning, FeedbackEntry, FundRequest,
HackathonEvent, HackathonProject, HackathonRegistration, HackathonSponsor, Interest, Investigation, LabsResearch,
ObjectView, Option, Poll, PollMedia, PortfolioItem, Profile, ProfileVerification, ProfileView, Question,
SearchHistory, Sponsor, Tip, TipPayout, TokenApproval, TribeMember, TribesSubscription, UserAction, UserVerificationModel,
SearchHistory, Sponsor, Tip, TipPayout, TokenApproval, TribeMember, TribesSubscription, UserAction,
UserVerificationModel,
)


Expand Down
20 changes: 20 additions & 0 deletions app/dashboard/migrations/0132_auto_20200728_1112.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:12

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


class Migration(migrations.Migration):

dependencies = [
('dashboard', '0131_auto_20200727_1511'),
]

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

0 comments on commit d17125b

Please sign in to comment.