26 lines
800 B
Python
26 lines
800 B
Python
# Generated by Django 5.1.7 on 2025-11-17 04:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0265_transaction_customer_transaction_product'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Transaction_Phase',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('code', models.CharField(max_length=30, null=True, unique=True)),
|
|
('name', models.CharField(max_length=100)),
|
|
('create_time', models.DateTimeField(auto_now_add=True, null=True)),
|
|
],
|
|
options={
|
|
'db_table': 'transaction_phase',
|
|
},
|
|
),
|
|
]
|