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.
33 lines
1.2 KiB
33 lines
1.2 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-08-26 09:52
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('projects', '0016_merge'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Arbitration',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('text', models.TextField()),
|
|
('created', models.DateTimeField(default=django.utils.timezone.now)),
|
|
('order', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='projects.Order')),
|
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Арбитраж',
|
|
'verbose_name_plural': 'Арбитраж',
|
|
},
|
|
),
|
|
]
|
|
|