You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-07-04 15:54
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import sorl.thumbnail.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('work_sell', '0005_auto_20160704_1449'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='WorkSellPhoto',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('img', sorl.thumbnail.fields.ImageField(upload_to='worksell/worksell')),
|
|
('worksell', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='photos', to='work_sell.WorkSell')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Изображение Готовая работа',
|
|
'verbose_name_plural': 'Изображения Готовые работы',
|
|
},
|
|
),
|
|
]
|
|
|