27 lines
868 B
Python
27 lines
868 B
Python
|
# Generated by Django 2.2.10 on 2020-05-12 15:23
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import media.fields
|
||
|
import media.validators
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('media', '0026_auto_20200210_1740'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='FutureMedia',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('isbn', media.fields.ISBNField(blank=True, help_text='You may be able to scan it from a bar code.', max_length=28, null=True, unique=True, validators=[media.validators.isbn_validator], verbose_name='ISBN')),
|
||
|
],
|
||
|
options={
|
||
|
'verbose_name': 'future medium',
|
||
|
'verbose_name_plural': 'future media',
|
||
|
},
|
||
|
),
|
||
|
]
|