20 lines
443 B
Python
20 lines
443 B
Python
# Generated by Django 5.0.2 on 2024-02-19 15:48
|
|
|
|
import jsignature.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('hrm', '0004_alter_employee_contract_start_date'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='employee',
|
|
name='signature',
|
|
field=jsignature.fields.JSignatureField(blank=True, null=True),
|
|
),
|
|
]
|