28 lines
929 B
Python
28 lines
929 B
Python
# Generated by Django 5.0.2 on 2024-03-06 00:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pokemans_app', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='CostcoProduct',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('sku', models.CharField(max_length=255)),
|
|
('name', models.CharField(max_length=255)),
|
|
('price', models.CharField(max_length=255)),
|
|
('img_url', models.CharField(max_length=555)),
|
|
('product_link', models.CharField(max_length=555)),
|
|
('active', models.BooleanField(default=True)),
|
|
('created_at', models.DateTimeField(auto_now=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
],
|
|
),
|
|
]
|