12345678910111213141516171819202122232425262728 |
- # Generated by Django 5.0 on 2023-12-26 03:16
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ("shop", "0001_initial"),
- ]
- operations = [
- migrations.CreateModel(
- name="Product",
- fields=[
- (
- "id",
- models.BigAutoField(
- auto_created=True,
- primary_key=True,
- serialize=False,
- verbose_name="ID",
- ),
- ),
- ("name", models.CharField(max_length=255)),
- ("description", models.TextField()),
- ],
- ),
- ]
|