Initial commit (Clean history)
This commit is contained in:
26
app/migrations/0264_document_configuration.py
Normal file
26
app/migrations/0264_document_configuration.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# Generated by Django 5.1.7 on 2025-11-17 02:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0263_customer_type'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Document_Configuration',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('code', models.CharField(max_length=30, unique=True)),
|
||||
('name', models.CharField(max_length=200)),
|
||||
('template_path', models.CharField(max_length=200)),
|
||||
('mappings', models.JSONField(default=list)),
|
||||
],
|
||||
options={
|
||||
'db_table': 'document_configuration',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user