Repository URL to install this package:
|
Version:
0.1.1 ▾
|
# Generated by Django 2.1.1 on 2019-01-11 12:25
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Currency',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(max_length=255)),
('symbol', models.CharField(max_length=10)),
('key', models.CharField(max_length=10)),
],
options={
'verbose_name': 'Currency',
'verbose_name_plural': 'Currencies',
},
),
]