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.
35 lines
1.2 KiB
35 lines
1.2 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-08-16 16:42
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0009_auto_20160816_1439'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='answer',
|
|
name='budget',
|
|
field=models.DecimalField(blank=True, decimal_places=0, max_digits=10, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='answer',
|
|
name='currency',
|
|
field=models.CharField(blank=True, choices=[('rur', 'RUR'), ('usd', 'USD'), ('eur', 'EUR')], max_length=5, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='answer',
|
|
name='term',
|
|
field=models.IntegerField(blank=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='answer',
|
|
name='term_type',
|
|
field=models.CharField(blank=True, choices=[('project', 'За проект'), ('hour', 'За час'), ('day', 'За день'), ('month', 'За месяц')], max_length=10, null=True),
|
|
),
|
|
]
|
|
|