1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Generated by Django 2.2.6 on 2019-10-08 07:46
from django.db import migrations, models
import products.models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Product',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=200)),
('slug', models.CharField(max_length=50)),
('pub_date', models.DateTimeField()),
('body_markdown', models.TextField(blank=True)),
('body_html', models.TextField(blank=True, null=True)),
('primary_offer_url', models.CharField(max_length=400)),
('primary_offer_price', models.IntegerField()),
('secondary_offer_url', models.CharField(blank=True, max_length=400, null=True)),
('secondar_offer_price', models.IntegerField(blank=True, null=True)),
('rating', models.IntegerField()),
('is_public', models.BooleanField(default=True)),
('image', models.FileField(blank=True, null=True, upload_to=products.models.get_upload_path)),
],
options={
'ordering': ('-pub_date',),
},
),
]
|