mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2025-05-16 11:28:24 +08:00
Added is_technician field in customuser
This commit is contained in:
parent
a92d698ec9
commit
806be0157c
4 changed files with 42 additions and 11 deletions
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 4.2.7 on 2023-11-13 10:22
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('accounts', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='customuser',
|
||||
name='is_technician',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue