Skip to content

Commit

Permalink
Missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Seb committed Oct 9, 2018
1 parent d496cf4 commit 05a4357
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@

setup(
name='wagtailvideos',
version='2.0.0',
version='2.0.1',
description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme,
author='Takeflight',
Expand Down
17 changes: 17 additions & 0 deletions wagtailvideos/migrations/0010_video_ordering.py
@@ -0,0 +1,17 @@
# Generated by Django 2.0.7 on 2018-10-09 23:19

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('wagtailvideos', '0009_videotranscode_quality'),
]

operations = [
migrations.AlterModelOptions(
name='video',
options={'ordering': ['-created_at']},
),
]

0 comments on commit 05a4357

Please sign in to comment.