Skip to content

Commit

Permalink
Add migrations in stats app
Browse files Browse the repository at this point in the history
  • Loading branch information
adityacp committed Nov 12, 2020
1 parent 06747ca commit f29c1b2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions stats/migrations/0002_release_0_29_1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 3.0.7 on 2020-11-12 12:11

from django.db import migrations, models


class Migration(migrations.Migration):

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

operations = [
migrations.AddField(
model_name='lessonlog',
name='current_time',
field=models.CharField(default='00:00:00', max_length=20),
),
migrations.AddField(
model_name='tracklesson',
name='watched',
field=models.BooleanField(default=False),
),
]

0 comments on commit f29c1b2

Please sign in to comment.