diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-01-29 17:41:48 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-07-01 18:02:28 +0200 |
commit | 75387c3c62f8623dfbcc8019c14e68de1391b0c3 (patch) | |
tree | cd63cc6c0ed2e4d907c0026ea00682067064912b /ishtar_common/migrations/0021_auto_20171110_1717.py | |
parent | 81bc316440558bf40a97f55424194f84e077f552 (diff) | |
download | Ishtar-75387c3c62f8623dfbcc8019c14e68de1391b0c3.tar.bz2 Ishtar-75387c3c62f8623dfbcc8019c14e68de1391b0c3.zip |
Finish migration refactoring
Diffstat (limited to 'ishtar_common/migrations/0021_auto_20171110_1717.py')
-rw-r--r-- | ishtar_common/migrations/0021_auto_20171110_1717.py | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/ishtar_common/migrations/0021_auto_20171110_1717.py b/ishtar_common/migrations/0021_auto_20171110_1717.py deleted file mode 100644 index c95f5e1d8..000000000 --- a/ishtar_common/migrations/0021_auto_20171110_1717.py +++ /dev/null @@ -1,77 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.11 on 2017-11-10 17:17 -from __future__ import unicode_literals - -import django.core.validators -from django.db import migrations, models -import django.db.models.deletion -import ishtar_common.models -import re - - -class Migration(migrations.Migration): - - dependencies = [ - ('ishtar_common', '0020_auto_20171030_1708'), - ] - - operations = [ - migrations.CreateModel( - name='ImageType', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('label', models.CharField(max_length=100, verbose_name='Label')), - ('txt_idx', models.CharField(help_text='The slug is the standardized version of the name. It contains only lowercase letters, numbers and hyphens. Each slug must be unique.', max_length=100, unique=True, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens.", 'invalid')], verbose_name='Textual ID')), - ('comment', models.TextField(blank=True, null=True, verbose_name='Comment')), - ('available', models.BooleanField(default=True, verbose_name='Available')), - ], - options={ - 'ordering': ('label',), - 'verbose_name': 'Image type', - 'verbose_name_plural': 'Image types', - }, - bases=(ishtar_common.models.Cached, models.Model), - ), - migrations.CreateModel( - name='IshtarImage', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('image', models.ImageField(blank=True, max_length=255, null=True, upload_to=ishtar_common.models.get_image_path)), - ('thumbnail', models.ImageField(blank=True, max_length=255, null=True, upload_to=ishtar_common.models.get_image_path)), - ('name', models.CharField(max_length=250, verbose_name='Name')), - ('description', models.TextField(blank=True, null=True, verbose_name='Description')), - ('authors_raw', models.CharField(blank=True, max_length=250, null=True, verbose_name='Authors (raw)')), - ('creation_date', models.DateField(blank=True, null=True, verbose_name='Creation date')), - ('reference', models.CharField(blank=True, max_length=250, null=True, verbose_name='Ref.')), - ('internal_reference', models.CharField(blank=True, max_length=250, null=True, verbose_name='Internal ref.')), - ('authors', models.ManyToManyField(blank=True, to='ishtar_common.Author', verbose_name='Authors')), - ('image_type', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='ishtar_common.ImageType', verbose_name='Type')), - ], - options={ - 'ordering': ('name',), - 'verbose_name': 'Image', - 'verbose_name_plural': 'Images', - }, - ), - migrations.CreateModel( - name='LicenseType', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('label', models.CharField(max_length=100, verbose_name='Label')), - ('txt_idx', models.CharField(help_text='The slug is the standardized version of the name. It contains only lowercase letters, numbers and hyphens. Each slug must be unique.', max_length=100, unique=True, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens.", 'invalid')], verbose_name='Textual ID')), - ('comment', models.TextField(blank=True, null=True, verbose_name='Comment')), - ('available', models.BooleanField(default=True, verbose_name='Available')), - ], - options={ - 'ordering': ('label',), - 'verbose_name': 'License type', - 'verbose_name_plural': 'License types', - }, - bases=(ishtar_common.models.Cached, models.Model), - ), - migrations.AddField( - model_name='ishtarimage', - name='licenses', - field=models.ManyToManyField(blank=True, to='ishtar_common.LicenseType', verbose_name='License'), - ), - ] |