mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
32 lines
689 B
Python
32 lines
689 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
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,
|
|
),
|
|
]
|