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
|
# Generated by Django 4.2.2 on 2023-07-06 19:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('deals', '0013_deal_brand'),
]
operations = [
migrations.CreateModel(
name='MyDeal',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(blank=True, max_length=200, null=True)),
('lookup_title', models.CharField(blank=True, max_length=200, null=True)),
('asin', models.CharField(blank=True, max_length=200, null=True)),
('brand', models.CharField(blank=True, max_length=200, null=True)),
('url', models.CharField(max_length=200)),
('secondary_url', models.CharField(blank=True, max_length=200, null=True)),
('tertiary_url', models.CharField(blank=True, max_length=200, null=True)),
('body', models.TextField()),
],
options={
'ordering': ('title',),
},
),
]
|