Skip to content

Commit

Permalink
Add missing migration for test
Browse files Browse the repository at this point in the history
  • Loading branch information
axnsan12 committed Apr 1, 2019
1 parent 887b533 commit 548489a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions testproj/todo/migrations/0003_pack.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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)),
],
),
]

0 comments on commit 548489a

Please sign in to comment.