20 lines
503 B
Python
20 lines
503 B
Python
![]() |
# Generated by Django 5.0.6 on 2024-07-14 22:16
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('accounting', '0002_alter_order_price_currency_alter_order_vat_currency_and_more'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='payment',
|
||
|
name='stripe_charge_id',
|
||
|
field=models.CharField(blank=True, default='', max_length=255),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|