diff options
author | Palaparthy Adityachandra | 2020-11-12 18:24:22 +0530 |
---|---|---|
committer | GitHub | 2020-11-12 18:24:22 +0530 |
commit | 0cf9c577125b400610bd51fff32d4a9de0dca946 (patch) | |
tree | 444d170232abb82d682cea4ad20c032944e462c1 /stats | |
parent | 11a6ffba5da1501878109aa727cc9a8f55311af1 (diff) | |
parent | 7ccebf2cc79a2e5a20664f44577a4d8bc2635895 (diff) | |
download | online_test-0cf9c577125b400610bd51fff32d4a9de0dca946.tar.gz online_test-0cf9c577125b400610bd51fff32d4a9de0dca946.tar.bz2 online_test-0cf9c577125b400610bd51fff32d4a9de0dca946.zip |
Merge pull request #797 from adityacp/fix_video_issues
Fix video issues
Diffstat (limited to 'stats')
-rw-r--r-- | stats/migrations/0002_release_0_29_1.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/stats/migrations/0002_release_0_29_1.py b/stats/migrations/0002_release_0_29_1.py new file mode 100644 index 0000000..44f1a54 --- /dev/null +++ b/stats/migrations/0002_release_0_29_1.py @@ -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), + ), + ] |