22 lines
633 B
Python
22 lines
633 B
Python
# Generated by Django 3.0.8 on 2020-09-16 07:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('genericsource', '0007_srcauxdata_specimg'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='GenericCatalogsGroup',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(blank=True, max_length=51)),
|
|
('catalog', models.ManyToManyField(to='genericsource.GenericCatalog')),
|
|
],
|
|
),
|
|
]
|