parent
cc0f9d64e0
commit
34197e7c1a
@ -0,0 +1,23 @@ |
||||
# Generated by Django 4.2.11 on 2025-03-19 19:00 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('shop', '0012_order_payment_status_and_more'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='color', |
||||
name='colorHex', |
||||
field=models.CharField(default='#FFFFFF', help_text='Color in hex format (e.g. #FF0000)', max_length=7), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='color', |
||||
name='name', |
||||
field=models.CharField(max_length=20, unique=True), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue