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.
27 lines
814 B
27 lines
814 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-05-31 09:06
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0012_auto_20160530_1355'),
|
|
('review', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='review',
|
|
options={'verbose_name': 'Отзыв', 'verbose_name_plural': 'Отзывы'},
|
|
),
|
|
migrations.AddField(
|
|
model_name='review',
|
|
name='project',
|
|
field=models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, related_name='reviews', to='projects.Project'),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|