docker compose up and gitignore update

This commit is contained in:
Parsa Nazer
2025-01-27 21:28:42 +03:30
parent 0d32271b99
commit 862b73b071
6 changed files with 72 additions and 2 deletions
@@ -0,0 +1,18 @@
# Generated by Django 5.1.2 on 2025-01-27 15:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('product', '0002_rename_image_productmodel_image1_productmodel_image2_and_more'),
]
operations = [
migrations.AddField(
model_name='productmodel',
name='video',
field=models.FileField(blank=True, null=True, upload_to='product_videos/'),
),
]
@@ -0,0 +1,23 @@
# Generated by Django 5.1.2 on 2025-01-27 17:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('product', '0003_productmodel_video'),
]
operations = [
migrations.AddField(
model_name='productmodel',
name='show',
field=models.BooleanField(default=False),
),
migrations.AddField(
model_name='subcategorymodel',
name='show',
field=models.BooleanField(default=False),
),
]