From 2ac0900d3f78aa237822c12de2d112039a8f6b0b Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Thu, 30 Jun 2016 16:48:20 +0200 Subject: [PATCH] [many] Add missing migration after model ordering change --- .../migrations/0002_auto_20160630_1644.py | 19 +++++++++++++++ .../migrations/0006_auto_20160630_1644.py | 19 +++++++++++++++ .../migrations/0002_auto_20160630_1644.py | 19 +++++++++++++++ .../migrations/0002_auto_20160630_1644.py | 23 +++++++++++++++++++ .../migrations/0002_auto_20160630_1644.py | 19 +++++++++++++++ 5 files changed, 99 insertions(+) create mode 100644 beat/web/algorithms/migrations/0002_auto_20160630_1644.py create mode 100644 beat/web/experiments/migrations/0006_auto_20160630_1644.py create mode 100644 beat/web/libraries/migrations/0002_auto_20160630_1644.py create mode 100644 beat/web/plotters/migrations/0002_auto_20160630_1644.py create mode 100644 beat/web/toolchains/migrations/0002_auto_20160630_1644.py diff --git a/beat/web/algorithms/migrations/0002_auto_20160630_1644.py b/beat/web/algorithms/migrations/0002_auto_20160630_1644.py new file mode 100644 index 000000000..b2922b3c1 --- /dev/null +++ b/beat/web/algorithms/migrations/0002_auto_20160630_1644.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.5 on 2016-06-30 16:44 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('algorithms', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='algorithm', + options={'ordering': ['previous_version_id', 'fork_of_id', 'id']}, + ), + ] diff --git a/beat/web/experiments/migrations/0006_auto_20160630_1644.py b/beat/web/experiments/migrations/0006_auto_20160630_1644.py new file mode 100644 index 000000000..bbcb20452 --- /dev/null +++ b/beat/web/experiments/migrations/0006_auto_20160630_1644.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.5 on 2016-06-30 16:44 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('experiments', '0005_scheduler_addons_4'), + ] + + operations = [ + migrations.AlterModelOptions( + name='block', + options={'ordering': ['id']}, + ), + ] diff --git a/beat/web/libraries/migrations/0002_auto_20160630_1644.py b/beat/web/libraries/migrations/0002_auto_20160630_1644.py new file mode 100644 index 000000000..50dd6910c --- /dev/null +++ b/beat/web/libraries/migrations/0002_auto_20160630_1644.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.5 on 2016-06-30 16:44 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('libraries', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='library', + options={'ordering': ['previous_version_id', 'fork_of_id', 'id'], 'verbose_name_plural': 'libraries'}, + ), + ] diff --git a/beat/web/plotters/migrations/0002_auto_20160630_1644.py b/beat/web/plotters/migrations/0002_auto_20160630_1644.py new file mode 100644 index 000000000..97cac19ce --- /dev/null +++ b/beat/web/plotters/migrations/0002_auto_20160630_1644.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.5 on 2016-06-30 16:44 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('plotters', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='plotter', + options={'ordering': ['previous_version_id', 'fork_of_id', 'id']}, + ), + migrations.AlterModelOptions( + name='plotterparameter', + options={'ordering': ['previous_version_id', 'fork_of_id', 'id']}, + ), + ] diff --git a/beat/web/toolchains/migrations/0002_auto_20160630_1644.py b/beat/web/toolchains/migrations/0002_auto_20160630_1644.py new file mode 100644 index 000000000..ce1b4cb98 --- /dev/null +++ b/beat/web/toolchains/migrations/0002_auto_20160630_1644.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.5 on 2016-06-30 16:44 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('toolchains', '0001_initial'), + ] + + operations = [ + migrations.AlterModelOptions( + name='toolchain', + options={'ordering': ['previous_version_id', 'fork_of_id', 'id']}, + ), + ] -- GitLab