From 163f830d180bec997ab9ad4c71e093f0796fcbb7 Mon Sep 17 00:00:00 2001 From: Christian Dresen <c.dresen@fh-muenster.de> Date: Mon, 19 Sep 2016 18:39:44 +0200 Subject: [PATCH] no message --- www/web/warpauth/migrations/0001_initial.py | 53 ------------- .../migrations/0002_auto_20160818_1603.py | 56 -------------- .../migrations/0002_auto_20160821_1613.py | 56 -------------- .../migrations/0002_ldapuser_card_id.py | 22 ------ www/web/warpauth/migrations/__init__.py | 0 www/web/warpfood/migrations/0001_initial.py | 77 ------------------- www/web/warpfood/migrations/__init__.py | 0 www/web/warpmain/migrations/0001_initial.py | 26 ------- www/web/warpmain/migrations/__init__.py | 0 www/web/warppay/migrations/0001_initial.py | 35 --------- .../migrations/0002_auto_20160821_1701.py | 44 ----------- .../migrations/0002_usercredit_card_id.py | 21 ----- .../migrations/0003_auto_20160821_1706.py | 28 ------- .../migrations/0004_auto_20160909_1401.py | 20 ----- www/web/warppay/migrations/__init__.py | 0 15 files changed, 438 deletions(-) delete mode 100644 www/web/warpauth/migrations/0001_initial.py delete mode 100644 www/web/warpauth/migrations/0002_auto_20160818_1603.py delete mode 100644 www/web/warpauth/migrations/0002_auto_20160821_1613.py delete mode 100644 www/web/warpauth/migrations/0002_ldapuser_card_id.py delete mode 100644 www/web/warpauth/migrations/__init__.py delete mode 100644 www/web/warpfood/migrations/0001_initial.py delete mode 100644 www/web/warpfood/migrations/__init__.py delete mode 100644 www/web/warpmain/migrations/0001_initial.py delete mode 100644 www/web/warpmain/migrations/__init__.py delete mode 100644 www/web/warppay/migrations/0001_initial.py delete mode 100644 www/web/warppay/migrations/0002_auto_20160821_1701.py delete mode 100644 www/web/warppay/migrations/0002_usercredit_card_id.py delete mode 100644 www/web/warppay/migrations/0003_auto_20160821_1706.py delete mode 100644 www/web/warppay/migrations/0004_auto_20160909_1401.py delete mode 100644 www/web/warppay/migrations/__init__.py diff --git a/www/web/warpauth/migrations/0001_initial.py b/www/web/warpauth/migrations/0001_initial.py deleted file mode 100644 index 495e7e8..0000000 --- a/www/web/warpauth/migrations/0001_initial.py +++ /dev/null @@ -1,53 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 16:21 -from __future__ import unicode_literals - -from django.db import migrations, models -import ldapdb.models.fields - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='LdapGroup', - fields=[ - ('dn', models.CharField(max_length=200)), - ('gid', ldapdb.models.fields.IntegerField(db_column='gidNumber', unique=True)), - ('name', ldapdb.models.fields.CharField(db_column='cn', max_length=200, primary_key=True, serialize=False)), - ('members', ldapdb.models.fields.ListField(db_column='memberUid')), - ], - options={ - 'abstract': False, - }, - ), - migrations.CreateModel( - name='LdapUser', - fields=[ - ('dn', models.CharField(max_length=200)), - ('uid', ldapdb.models.fields.CharField(db_column='uid', max_length=200, primary_key=True, serialize=False, unique=True)), - ('first_name', ldapdb.models.fields.CharField(db_column='givenName', max_length=200)), - ('last_name', ldapdb.models.fields.CharField(db_column='sn', max_length=200)), - ('email', ldapdb.models.fields.CharField(db_column='mail', max_length=200)), - ('cn', ldapdb.models.fields.CharField(db_column='cn', max_length=200)), - ], - options={ - 'abstract': False, - }, - ), - migrations.CreateModel( - name='PasswordResetToken', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('user', models.CharField(max_length=100)), - ('email', models.CharField(max_length=100)), - ('hash', models.CharField(max_length=100)), - ('created', models.DateTimeField(auto_now_add=True)), - ], - ), - ] diff --git a/www/web/warpauth/migrations/0002_auto_20160818_1603.py b/www/web/warpauth/migrations/0002_auto_20160818_1603.py deleted file mode 100644 index 557159c..0000000 --- a/www/web/warpauth/migrations/0002_auto_20160818_1603.py +++ /dev/null @@ -1,56 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-18 16:03 -from __future__ import unicode_literals - -from django.db import migrations -import ldapdb.models.fields - - -class Migration(migrations.Migration): - - dependencies = [ - ('warpauth', '0001_initial'), - ] - - operations = [ - migrations.AlterField( - model_name='ldapgroup', - name='gid', - field=ldapdb.models.fields.IntegerField(db_column='gidNumber', unique=True), - ), - migrations.AlterField( - model_name='ldapgroup', - name='members', - field=ldapdb.models.fields.ListField(db_column='memberUid'), - ), - migrations.AlterField( - model_name='ldapgroup', - name='name', - field=ldapdb.models.fields.CharField(db_column='cn', max_length=200, primary_key=True, serialize=False), - ), - migrations.AlterField( - model_name='ldapuser', - name='cn', - field=ldapdb.models.fields.CharField(db_column='cn', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='email', - field=ldapdb.models.fields.CharField(db_column='mail', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='first_name', - field=ldapdb.models.fields.CharField(db_column='givenName', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='last_name', - field=ldapdb.models.fields.CharField(db_column='sn', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='uid', - field=ldapdb.models.fields.CharField(db_column='uid', max_length=200, primary_key=True, serialize=False, unique=True), - ), - ] diff --git a/www/web/warpauth/migrations/0002_auto_20160821_1613.py b/www/web/warpauth/migrations/0002_auto_20160821_1613.py deleted file mode 100644 index e83f519..0000000 --- a/www/web/warpauth/migrations/0002_auto_20160821_1613.py +++ /dev/null @@ -1,56 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 16:13 -from __future__ import unicode_literals - -from django.db import migrations -import ldapdb.models.fields - - -class Migration(migrations.Migration): - - dependencies = [ - ('warpauth', '0001_initial'), - ] - - operations = [ - migrations.AlterField( - model_name='ldapgroup', - name='gid', - field=ldapdb.models.fields.IntegerField(db_column='gidNumber', unique=True), - ), - migrations.AlterField( - model_name='ldapgroup', - name='members', - field=ldapdb.models.fields.ListField(db_column='memberUid'), - ), - migrations.AlterField( - model_name='ldapgroup', - name='name', - field=ldapdb.models.fields.CharField(db_column='cn', max_length=200, primary_key=True, serialize=False), - ), - migrations.AlterField( - model_name='ldapuser', - name='cn', - field=ldapdb.models.fields.CharField(db_column='cn', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='email', - field=ldapdb.models.fields.CharField(db_column='mail', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='first_name', - field=ldapdb.models.fields.CharField(db_column='givenName', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='last_name', - field=ldapdb.models.fields.CharField(db_column='sn', max_length=200), - ), - migrations.AlterField( - model_name='ldapuser', - name='uid', - field=ldapdb.models.fields.CharField(db_column='uid', max_length=200, primary_key=True, serialize=False, unique=True), - ), - ] diff --git a/www/web/warpauth/migrations/0002_ldapuser_card_id.py b/www/web/warpauth/migrations/0002_ldapuser_card_id.py deleted file mode 100644 index 95cb90c..0000000 --- a/www/web/warpauth/migrations/0002_ldapuser_card_id.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 16:52 -from __future__ import unicode_literals - -from django.db import migrations -import ldapdb.models.fields - - -class Migration(migrations.Migration): - - dependencies = [ - ('warpauth', '0001_initial'), - ] - - operations = [ - migrations.AddField( - model_name='ldapuser', - name='card_id', - field=ldapdb.models.fields.CharField(db_column='pager', default=0, max_length=200), - preserve_default=False, - ), - ] diff --git a/www/web/warpauth/migrations/__init__.py b/www/web/warpauth/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/www/web/warpfood/migrations/0001_initial.py b/www/web/warpfood/migrations/0001_initial.py deleted file mode 100644 index 0a5a045..0000000 --- a/www/web/warpfood/migrations/0001_initial.py +++ /dev/null @@ -1,77 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 16:20 -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion -import django.utils.timezone - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='FoodCategory', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=250)), - ], - ), - migrations.CreateModel( - name='FoodOrder', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('user', models.CharField(max_length=100, null=True)), - ('article', models.CharField(max_length=100, null=True)), - ('size', models.CharField(max_length=100, null=True)), - ('comment', models.CharField(max_length=100, null=True)), - ('price', models.FloatField()), - ('paid', models.BooleanField(default=False)), - ], - ), - migrations.CreateModel( - name='FoodProduct', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=250)), - ('size', models.CharField(max_length=100, null=True)), - ('price', models.FloatField()), - ('food_category', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='warpfood.FoodCategory')), - ], - ), - migrations.CreateModel( - name='FoodService', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=250)), - ('phone', models.CharField(max_length=250)), - ], - ), - migrations.CreateModel( - name='FoodSheet', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('date', models.DateTimeField(default=django.utils.timezone.now)), - ('estimated_order_time', models.DateTimeField()), - ('closed', models.BooleanField(default=False)), - ('order_user', models.CharField(max_length=100, null=True)), - ('order_time', models.DateTimeField(null=True)), - ('food_service', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='warpfood.FoodService')), - ], - ), - migrations.AddField( - model_name='foodproduct', - name='food_service', - field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='warpfood.FoodService'), - ), - migrations.AddField( - model_name='foodorder', - name='sheet', - field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='warpfood.FoodSheet'), - ), - ] diff --git a/www/web/warpfood/migrations/__init__.py b/www/web/warpfood/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/www/web/warpmain/migrations/0001_initial.py b/www/web/warpmain/migrations/0001_initial.py deleted file mode 100644 index 110b564..0000000 --- a/www/web/warpmain/migrations/0001_initial.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 16:27 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='News', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('user', models.CharField(max_length=100, null=True)), - ('title', models.CharField(max_length=100)), - ('message', models.TextField()), - ('created', models.DateTimeField(auto_now_add=True)), - ], - ), - ] diff --git a/www/web/warpmain/migrations/__init__.py b/www/web/warpmain/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/www/web/warppay/migrations/0001_initial.py b/www/web/warppay/migrations/0001_initial.py deleted file mode 100644 index 03b54ba..0000000 --- a/www/web/warppay/migrations/0001_initial.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 16:21 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='Product', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('user', models.CharField(max_length=100, null=True)), - ('title', models.CharField(max_length=100)), - ('message', models.TextField()), - ('created', models.DateTimeField(auto_now_add=True)), - ], - ), - migrations.CreateModel( - name='UserCredit', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('uid', models.CharField(max_length=100, unique=True)), - ('card_id', models.IntegerField()), - ('credit', models.FloatField()), - ], - ), - ] diff --git a/www/web/warppay/migrations/0002_auto_20160821_1701.py b/www/web/warppay/migrations/0002_auto_20160821_1701.py deleted file mode 100644 index e8d2e68..0000000 --- a/www/web/warppay/migrations/0002_auto_20160821_1701.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 17:01 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('warppay', '0001_initial'), - ] - - operations = [ - migrations.RenameField( - model_name='product', - old_name='user', - new_name='name', - ), - migrations.RemoveField( - model_name='product', - name='created', - ), - migrations.RemoveField( - model_name='product', - name='message', - ), - migrations.RemoveField( - model_name='product', - name='title', - ), - migrations.AddField( - model_name='product', - name='count', - field=models.IntegerField(default=0), - preserve_default=False, - ), - migrations.AddField( - model_name='product', - name='price', - field=models.FloatField(default=0), - preserve_default=False, - ), - ] diff --git a/www/web/warppay/migrations/0002_usercredit_card_id.py b/www/web/warppay/migrations/0002_usercredit_card_id.py deleted file mode 100644 index bcb14cd..0000000 --- a/www/web/warppay/migrations/0002_usercredit_card_id.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 16:12 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('warppay', '0001_initial'), - ] - - operations = [ - migrations.AddField( - model_name='usercredit', - name='card_id', - field=models.IntegerField(default=0), - preserve_default=False, - ), - ] diff --git a/www/web/warppay/migrations/0003_auto_20160821_1706.py b/www/web/warppay/migrations/0003_auto_20160821_1706.py deleted file mode 100644 index d834e1b..0000000 --- a/www/web/warppay/migrations/0003_auto_20160821_1706.py +++ /dev/null @@ -1,28 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-08-21 17:06 -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('warppay', '0002_auto_20160821_1701'), - ] - - operations = [ - migrations.CreateModel( - name='ProductCategory', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('name', models.CharField(max_length=100, unique=True)), - ], - ), - migrations.AddField( - model_name='product', - name='category', - field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='warppay.ProductCategory'), - ), - ] diff --git a/www/web/warppay/migrations/0004_auto_20160909_1401.py b/www/web/warppay/migrations/0004_auto_20160909_1401.py deleted file mode 100644 index 4d8597b..0000000 --- a/www/web/warppay/migrations/0004_auto_20160909_1401.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.9 on 2016-09-09 14:01 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('warppay', '0003_auto_20160821_1706'), - ] - - operations = [ - migrations.AlterField( - model_name='usercredit', - name='card_id', - field=models.CharField(max_length=10, unique=True), - ), - ] diff --git a/www/web/warppay/migrations/__init__.py b/www/web/warppay/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 -- GitLab