migrations
This commit is contained in:
parent
6919d21758
commit
8936673273
@ -0,0 +1,24 @@
|
|||||||
|
# Generated by Django 4.2.12 on 2024-10-14 12:34
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
import django.db.models.deletion
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('alkatorapi', '0022_product_hidden'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='cart',
|
||||||
|
name='address',
|
||||||
|
field=models.CharField(blank=True, max_length=120, null=True),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='cartproduct',
|
||||||
|
name='cart',
|
||||||
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='alkatorapi.cart'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
x
Reference in New Issue
Block a user