Merge branch 'setup' of https://bitbucket.org/PekopT/archilance into setup
commit
d384391782
11 changed files with 209 additions and 106 deletions
@ -0,0 +1,37 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-07-25 13:05 |
||||
from __future__ import unicode_literals |
||||
|
||||
import datetime |
||||
from django.db import migrations, models |
||||
from django.utils.timezone import utc |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('projects', '0001_initial'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='stage', |
||||
name='created', |
||||
field=models.DateTimeField(default=datetime.datetime(2016, 7, 25, 13, 5, 40, 39347, tzinfo=utc)), |
||||
), |
||||
migrations.AddField( |
||||
model_name='stage', |
||||
name='pos', |
||||
field=models.IntegerField(blank=True, default=0, null=True), |
||||
), |
||||
migrations.AddField( |
||||
model_name='stage', |
||||
name='status', |
||||
field=models.CharField(choices=[('not_agreed', 'Не согласован'), ('in_process', 'В процессе'), ('completed', 'Завершен')], default='not_agreed', max_length=30), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='project', |
||||
name='deal_type', |
||||
field=models.CharField(choices=[('secure_deal', 'Безопасная сделка'), ('direct_payment', 'Прямая оплата')], default='secure_deal', max_length=20), |
||||
), |
||||
] |
||||
@ -0,0 +1,22 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-07-25 13:06 |
||||
from __future__ import unicode_literals |
||||
|
||||
import datetime |
||||
from django.db import migrations, models |
||||
from django.utils.timezone import utc |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('projects', '0002_auto_20160725_1605'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='stage', |
||||
name='created', |
||||
field=models.DateTimeField(default=datetime.datetime(2016, 7, 25, 13, 6, 34, 550741, tzinfo=utc)), |
||||
), |
||||
] |
||||
@ -0,0 +1,25 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-07-25 13:05 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('users', '0001_initial'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='contractorresume', |
||||
name='resume_file', |
||||
field=models.FileField(blank=True, null=True, upload_to='users/resume/files/'), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='contractorresume', |
||||
name='text', |
||||
field=models.TextField(blank=True, null=True), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue