mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
19 lines
402 B
Python
19 lines
402 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('RIGS', '0005_auto_20141104_1619'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='organisation',
|
|
old_name='unionAccount',
|
|
new_name='union_account',
|
|
),
|
|
]
|