mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-24 00:42:17 +00:00
Python code is now formatted to PEP8 All other files are defined in .editorconfig as far as possible.
20 lines
465 B
Python
20 lines
465 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('RIGS', '0004_organisation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='profile',
|
|
name='initials',
|
|
field=models.CharField(blank=True, max_length=5, unique=True, null=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|