Skip to content

Commit

Permalink
Add accept terms migration
Browse files Browse the repository at this point in the history
  • Loading branch information
eheinrich committed Jun 22, 2019
1 parent fcef2d4 commit c09a16c
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.2.1 on 2019-06-20 22:25

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('accounts', '0001_initial'),
]

operations = [
migrations.AddField(
model_name='profile',
name='terms_accepted',
field=models.DateTimeField(blank=True, null=True),
),
]

0 comments on commit c09a16c

Please sign in to comment.