kopia lustrzana https://github.com/rtts/django-simplecms
27 wiersze
813 B
Python
27 wiersze
813 B
Python
# Generated by Django 3.0.2 on 2020-03-21 16:58
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='SectionImage',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('image', models.ImageField(upload_to='', verbose_name='Image')),
|
|
('section', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='images', to=settings.CMS_SECTION_MODEL)),
|
|
],
|
|
options={
|
|
'ordering': ['pk'],
|
|
},
|
|
),
|
|
]
|