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.
27 lines
767 B
27 lines
767 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-07-07 11:01
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
import sorl.thumbnail.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('work_sell', '0009_auto_20160707_1315'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='worksell',
|
|
name='created',
|
|
field=models.DateTimeField(blank=True, default=django.utils.timezone.now, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='worksell',
|
|
name='img',
|
|
field=sorl.thumbnail.fields.ImageField(blank=True, null=True, upload_to='worksell/worksell'),
|
|
),
|
|
]
|
|
|