Первоначальный залив проекта
This commit is contained in:
19
retraining/main/migrations/0032_emploees_department.py
Normal file
19
retraining/main/migrations/0032_emploees_department.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.1.1 on 2022-12-09 12:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0031_degree_alter_name_cases_options_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='emploees',
|
||||
name='department',
|
||||
field=models.CharField(default=1, max_length=255, verbose_name='Подразделение'),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user