53 lines
3.4 KiB
Python
53 lines
3.4 KiB
Python
# Generated by Django 5.0 on 2025-07-02 05:18
|
|
|
|
import django.db.models.deletion
|
|
import simple_history.models
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0023_alter_organization_company_code_and_more'),
|
|
('product', '0035_remove_quota_quota_balance'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='HistoricalQuotaDistribution',
|
|
fields=[
|
|
('id', models.BigIntegerField(auto_created=True, blank=True, db_index=True, verbose_name='ID')),
|
|
('create_date', models.DateTimeField(blank=True, editable=False)),
|
|
('modify_date', models.DateTimeField(blank=True, editable=False)),
|
|
('creator_info', models.CharField(max_length=100, null=True)),
|
|
('modifier_info', models.CharField(max_length=100, null=True)),
|
|
('trash', models.BooleanField(default=False)),
|
|
('description', models.TextField(max_length=1000, null=True)),
|
|
('distribution_id', models.CharField(max_length=20, null=True)),
|
|
('weight', models.PositiveBigIntegerField(default=0)),
|
|
('warehouse_entry', models.PositiveBigIntegerField(default=0)),
|
|
('warehouse_balance', models.PositiveBigIntegerField(default=0)),
|
|
('been_sold', models.PositiveBigIntegerField(default=0)),
|
|
('history_id', models.AutoField(primary_key=True, serialize=False)),
|
|
('history_date', models.DateTimeField(db_index=True)),
|
|
('history_change_reason', models.CharField(max_length=100, null=True)),
|
|
('history_type', models.CharField(choices=[('+', 'Created'), ('~', 'Changed'), ('-', 'Deleted')], max_length=1)),
|
|
('assigned_organization', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='authentication.organization')),
|
|
('assigner_organization', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='authentication.organization')),
|
|
('created_by', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL)),
|
|
('history_user', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL)),
|
|
('modified_by', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to=settings.AUTH_USER_MODEL)),
|
|
('quota', models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='product.quota')),
|
|
],
|
|
options={
|
|
'verbose_name': 'historical quota distribution',
|
|
'verbose_name_plural': 'historical quota distributions',
|
|
'ordering': ('-history_date', '-history_id'),
|
|
'get_latest_by': ('history_date', 'history_id'),
|
|
},
|
|
bases=(simple_history.models.HistoricalChanges, models.Model),
|
|
),
|
|
]
|