From: Guillaume Pellerin Date: Mon, 29 Feb 2016 10:38:18 +0000 (+0100) Subject: add media X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=bc64702dcf37d4cf4784a2f4218e2ae2ecb04fb8;p=mezzo.git add media --- diff --git a/app/apps/presta2eve b/app/apps/presta2eve index 78bcac45..22c079bf 160000 --- a/app/apps/presta2eve +++ b/app/apps/presta2eve @@ -1 +1 @@ -Subproject commit 78bcac45c47ffd7a6f41efa55eac76755a8153ad +Subproject commit 22c079bf2ae4988a7643f893153b0d8014b8bd67 diff --git a/app/festival/migrations/0002_auto_20160225_1602.py b/app/festival/migrations/0002_auto_20160225_1602.py new file mode 100644 index 00000000..5af49cf4 --- /dev/null +++ b/app/festival/migrations/0002_auto_20160225_1602.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('festival', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='video', + options={'verbose_name': 'video'}, + ), + migrations.AlterModelTable( + name='video', + table='festival_videos', + ), + ]