# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('trans', '0038_auto_20150810_1354'),
]
operations = [
migrations.RemoveField(
model_name='project',
name='owner',
),
]
-
Michal Čihař authored
The ownership is now stored in owners many to many relation, allowing to have more than one owner. Fixes #719 Signed-off-by:
Michal Čihař <michal@cihar.com>
1a903b3c