forked from Frikanalen/frikanalen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add migration script to remove every duration_old.
- Loading branch information
1 parent
940a9c6
commit 60f22e8
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.10.7 on 2019-01-01 11:14 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('fk', '0004_is_filler_explained'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='scheduleitem', | ||
name='duration_old', | ||
), | ||
migrations.RemoveField( | ||
model_name='video', | ||
name='duration_old', | ||
), | ||
migrations.RemoveField( | ||
model_name='weeklyslot', | ||
name='duration_old', | ||
), | ||
] |