21 lines
453 B
Python
21 lines
453 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.7 on 2021-11-28 21:12
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('staff', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='person',
|
||
|
name='username',
|
||
|
field=models.CharField(max_length=20, unique=True),
|
||
|
),
|
||
|
]
|