27 lines
871 B
Python
27 lines
871 B
Python
# Generated by Django 4.2.25 on 2025-12-11 09:31
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('finance', '0006_payment'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Reimbursement',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('person', models.CharField(max_length=100)),
|
|
('times', models.CharField(max_length=100)),
|
|
('reason', models.TextField()),
|
|
('amount', models.CharField(max_length=100)),
|
|
('FeeDescription', models.TextField()),
|
|
('submit_tiem', models.CharField(max_length=100)),
|
|
('state', models.CharField(max_length=100)),
|
|
],
|
|
),
|
|
]
|