27 lines
790 B
Python
27 lines
790 B
Python
# Generated by Django 2.2.4 on 2019-09-17 13:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('advertisement', '0002_auto_20190917_1307'),
|
|
('main', '0014_carousel'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Page',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('page_name', models.CharField(max_length=255, unique=True)),
|
|
('advertisements', models.ManyToManyField(to='advertisement.Advertisement')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Page',
|
|
'verbose_name_plural': 'Pages',
|
|
},
|
|
),
|
|
]
|