Ben Sturmfels
457e5739f7
Previously had some duplicates for "pono" which were causing MultipleObjectsReturned errors. A username is generally considered to be unique.
20 lines
453 B
Python
20 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),
|
|
),
|
|
]
|