mirror of
https://gh.llkk.cc/https://github.com/WeblateOrg/hosted.git
synced 2026-07-22 18:23:36 +08:00
14 lines
338 B
Python
14 lines
338 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
(
|
|
"payments",
|
|
"0034_customer_vat_validated_customer_vat_validation_error_and_more",
|
|
),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(migrations.RunPython.noop, migrations.RunPython.noop),
|
|
]
|