forked from CGM_Public/pretix_original
Provide support for manipulting order status
This commit is contained in:
24
src/pretix/base/migrations/0022_auto_20150320_2239.py
Normal file
24
src/pretix/base/migrations/0022_auto_20150320_2239.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pretixbase', '0021_auto_20150320_1622'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='order',
|
||||
name='payment_manual',
|
||||
field=models.BooleanField(verbose_name='Payment state was manually modified', default=False),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='order',
|
||||
name='status',
|
||||
field=models.CharField(verbose_name='Status', max_length=3, choices=[('n', 'pending'), ('p', 'paid'), ('e', 'expired'), ('c', 'cancelled'), ('r', 'refunded')]),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user