Skip to content

Commit 13ccd76

Browse files
committed
- chore: add migrations file
1 parent a6e03e4 commit 13ccd76

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 3.2.13 on 2022-06-07 22:44
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('api_user', '0002_user_is_staff'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='user',
15+
name='username',
16+
field=models.CharField(db_index=True, max_length=255, unique=True),
17+
),
18+
]

0 commit comments

Comments
 (0)