26 lines
838 B
Python
26 lines
838 B
Python
# Generated by Django 4.2 on 2024-08-30 09:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0004_machinerybrand_alter_transportexperience_category_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Rate',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('slug', models.CharField(max_length=15, verbose_name='Валютная пара')),
|
|
('rate', models.DecimalField(decimal_places=3, default=0, max_digits=10)),
|
|
],
|
|
options={
|
|
'verbose_name': 'курс валют',
|
|
'verbose_name_plural': 'курсы валют',
|
|
},
|
|
),
|
|
]
|