Skip to content

Commit 51c6503

Browse files
committed
- fix: add migrations #9
1 parent 60515c3 commit 51c6503

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 4.0.1 on 2022-05-27 12:34
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('api_user', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='user',
15+
name='is_staff',
16+
field=models.BooleanField(default=False),
17+
),
18+
]

0 commit comments

Comments
 (0)