mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-07-15 17:22:41 +02:00
initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 5.1.1 on 2024-09-19 13:35
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Currency',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('code', models.CharField(max_length=10, unique=True, verbose_name='Currency Code')),
|
||||
('name', models.CharField(max_length=50, verbose_name='Currency Name')),
|
||||
('decimal_places', models.PositiveIntegerField(default=2, verbose_name='Decimal Places')),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Currency',
|
||||
'verbose_name_plural': 'Currencies',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user