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.
20 lines
637 B
20 lines
637 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-04-14 16:52
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0002_bill_description'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='selfbillrequest',
|
|
name='company',
|
|
field=models.CharField(choices=[(b'lms', b'http://lms.ru/'), (b'skillbox', b'http://skill-box.ru/')], default=b'lms', max_length=255, verbose_name='\u041a\u043e\u043c\u043f\u0430\u043d\u0438\u044f'),
|
|
),
|
|
]
|
|
|