22 lines
664 B
Python
22 lines
664 B
Python
# Generated by Django 2.1.5 on 2019-04-01 00:28
|
|
|
|
from decimal import Decimal
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('todo', '0002_todotree'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Pack',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('size_code', models.DecimalField(choices=[(Decimal('50'), '5x10'), (Decimal('100'), '10x10'), (Decimal('200'), '10x20')], decimal_places=3, default=Decimal('200'), max_digits=7)),
|
|
],
|
|
),
|
|
]
|