mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-23 17:18:44 +02:00
21 lines
456 B
Python
21 lines
456 B
Python
# Generated by Django 5.1.1 on 2024-10-14 14:06
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("currencies", "0004_exchangerate"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="currency",
|
|
name="name",
|
|
field=models.CharField(
|
|
max_length=50, unique=True, verbose_name="Currency Name"
|
|
),
|
|
),
|
|
]
|