Updates to person model. Removed comments for now in favour of a simple notes section that can be easily modified as a text field. Will look at introducing this again in the future.

This commit is contained in:
tomtom5152
2014-10-31 02:23:20 +00:00
parent c39504a4ce
commit 2a0a223902
9 changed files with 121 additions and 21 deletions

View File

@@ -0,0 +1,31 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0002_modelcomment_person'),
]
operations = [
migrations.RemoveField(
model_name='modelcomment',
name='user',
),
migrations.RemoveField(
model_name='person',
name='comments',
),
migrations.DeleteModel(
name='ModelComment',
),
migrations.AddField(
model_name='person',
name='notes',
field=models.TextField(null=True, blank=True),
preserve_default=True,
),
]