21 lines
470 B
Python
21 lines
470 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.4 on 2018-07-29 09:19
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('products', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='product',
|
|
name='image',
|
|
field=models.FileField(blank=True, null=True, upload_to='products/'),
|
|
),
|
|
]
|