Skip to content

Commit

Permalink
Add migration file of user model
Browse files Browse the repository at this point in the history
  • Loading branch information
sudan45 committed Sep 12, 2024
1 parent 7214be4 commit 7d27cf6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions user/migrations/0002_alter_user_user_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.1 on 2024-09-12 05:48

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('user', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='user',
name='user_type',
field=models.PositiveSmallIntegerField(choices=[(1, 'HR')], null=True),
),
]

0 comments on commit 7d27cf6

Please sign in to comment.