mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
28 lines
881 B
Python
28 lines
881 B
Python
# Generated by Django 5.1.4 on 2024-12-10 01:18
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('categories', '0002_rename_category_categories'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Product',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=100)),
|
|
('description', models.TextField(blank=True, null=True)),
|
|
('price', models.DecimalField(decimal_places=2, max_digits=10)),
|
|
('active', models.BooleanField(default=True)),
|
|
('category', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='categories.categories')),
|
|
],
|
|
),
|
|
]
|