You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
988 B
26 lines
988 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.3 on 2017-02-03 13:33
|
|
from __future__ import unicode_literals
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0068_auto_20170202_2315'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='bill',
|
|
name='_method',
|
|
field=models.CharField(choices=[('H', 'Наличные'), ('B', 'Банковский перевод'), ('G', 'На расчетный счет'), ('A', 'Альфа-Банк'), ('P', 'PayPal'), ('W', 'WebMoney'), ('S', 'SimplePay'), ('Y', 'YandexKassa')], default='H', max_length=2, verbose_name='Способ оплаты'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='requestalert',
|
|
name='date',
|
|
field=models.DateTimeField(default=datetime.datetime.now, editable=False, verbose_name='Начало заявок'),
|
|
),
|
|
]
|
|
|