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