mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2024-11-17 14:29:28 +08:00
19 lines
388 B
Python
19 lines
388 B
Python
|
# 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),
|
||
|
),
|
||
|
]
|