38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
# Generated by Django 4.2.25 on 2025-12-06 16:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='User',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('username', models.CharField(max_length=100, unique=True)),
|
|
('account', models.CharField(max_length=100)),
|
|
('password', models.CharField(max_length=100)),
|
|
('ethnicity', models.CharField(max_length=100)),
|
|
('card', models.CharField(max_length=100)),
|
|
('mobilePhone', models.CharField(max_length=100)),
|
|
('department', models.CharField(max_length=100)),
|
|
('position', models.CharField(max_length=100)),
|
|
('team', models.CharField(max_length=100)),
|
|
('Dateofjoining', models.DateField()),
|
|
('Confirmationtime', models.DateField()),
|
|
('Practicingcertificatetime', models.DateField()),
|
|
('Dateofdeparture', models.DateField()),
|
|
('AcademicResume', models.TextField()),
|
|
('academic', models.TextField()),
|
|
('contract', models.TextField()),
|
|
('ApplicationForm', models.TextField()),
|
|
],
|
|
),
|
|
]
|