
Reviewed-on: https://git.data.coop/data.coop/membersystem/pulls/64 Co-authored-by: Víðir Valberg Guðmundsson <valberg@orn.li> Co-committed-by: Víðir Valberg Guðmundsson <valberg@orn.li>
19 lines
523 B
Python
19 lines
523 B
Python
# Generated by Django 5.0.6 on 2024-07-14 22:16
|
|
|
|
from django.db import migrations
|
|
from django.db import 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,
|
|
),
|
|
]
|