19 lines
416 B
Python
19 lines
416 B
Python
# Generated by Django 6.0.4 on 2026-05-18 14:54
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('purchase', '0002_purchasableproduct'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='purchasableproduct',
|
|
name='currency',
|
|
field=models.CharField(default='pln', max_length=10),
|
|
),
|
|
]
|