-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #937 from ubyssey/936-video
936 video
- Loading branch information
Showing
30 changed files
with
1,570 additions
and
245 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
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
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
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
51 changes: 51 additions & 0 deletions
51
dispatch/migrations/0023_publishable_constraints_default.py
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,51 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2019-05-05 22:30 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.utils.timezone | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dispatch', '0022_publishable_constraints'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='article', | ||
name='head', | ||
field=models.NullBooleanField(db_index=True, default=None), | ||
), | ||
migrations.AlterField( | ||
model_name='article', | ||
name='is_active', | ||
field=models.NullBooleanField(default=True), | ||
), | ||
migrations.AlterField( | ||
model_name='article', | ||
name='is_published', | ||
field=models.NullBooleanField(db_index=True, default=None), | ||
), | ||
migrations.AlterField( | ||
model_name='page', | ||
name='head', | ||
field=models.NullBooleanField(db_index=True, default=None), | ||
), | ||
migrations.AlterField( | ||
model_name='page', | ||
name='is_active', | ||
field=models.NullBooleanField(default=True), | ||
), | ||
migrations.AlterField( | ||
model_name='page', | ||
name='is_published', | ||
field=models.NullBooleanField(db_index=True, default=None), | ||
), | ||
migrations.AlterField( | ||
model_name='topic', | ||
name='slug', | ||
field=models.SlugField(max_length=255, unique=True), | ||
), | ||
] |
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,37 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11 on 2019-05-05 22:30 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.utils.timezone | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dispatch', '0023_publishable_constraints_default'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='video', | ||
name='authors', | ||
field=models.ManyToManyField(related_name='video_authors', to='dispatch.Author'), | ||
), | ||
migrations.AddField( | ||
model_name='video', | ||
name='created_at', | ||
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now), | ||
preserve_default=False, | ||
), | ||
migrations.AddField( | ||
model_name='video', | ||
name='tags', | ||
field=models.ManyToManyField(to='dispatch.Tag'), | ||
), | ||
migrations.AddField( | ||
model_name='video', | ||
name='updated_at', | ||
field=models.DateTimeField(auto_now=True), | ||
), | ||
] |
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
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
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
Oops, something went wrong.