# Generated by Django 3.2.7 on 2021-10-08 11:57 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Source', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=10)), ('icon', models.ImageField(blank=True, upload_to='source_icons')), ('href', models.URLField(blank=True, null=True)), ], options={ 'verbose_name_plural': '2. Веб-посилання', }, ), migrations.CreateModel( name='Process', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=20)), ('sources', models.ManyToManyField(blank=True, to='links.Source')), ], options={ 'verbose_name_plural': '1. Процеси', }, ), ]