parent
b3f4576f86
commit
f3ebc52679
8 changed files with 435 additions and 6 deletions
20
digitalglarus/migrations/0023_bookingorder_status.py
Normal file
20
digitalglarus/migrations/0023_bookingorder_status.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.4 on 2016-11-25 03:04
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('digitalglarus', '0022_auto_20161023_0218'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='bookingorder',
|
||||
name='status',
|
||||
field=models.PositiveIntegerField(choices=[(1, 'Approved'), (2, 'Cancelled')], default=1),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue