Files
RasadDam_Backend/apps/authentication/migrations/0026_organizationstats.py

38 lines
1.9 KiB
Python

# Generated by Django 5.0 on 2025-07-16 07:41
import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0025_alter_organizationtype_name'),
]
operations = [
migrations.CreateModel(
name='OrganizationStats',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('create_date', models.DateTimeField(auto_now_add=True)),
('modify_date', models.DateTimeField(auto_now=True)),
('creator_info', models.CharField(max_length=100, null=True)),
('modifier_info', models.CharField(max_length=100, null=True)),
('trash', models.BooleanField(default=False)),
('total_quota_received', models.PositiveBigIntegerField(default=0)),
('total_distributed', models.PositiveBigIntegerField(default=0)),
('total_inventory_in', models.PositiveBigIntegerField(default=0)),
('total_sold', models.PositiveBigIntegerField(default=0)),
('total_buyers', models.PositiveBigIntegerField(default=0)),
('created_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_createddby', to=settings.AUTH_USER_MODEL)),
('modified_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_modifiedby', to=settings.AUTH_USER_MODEL)),
('organization', models.OneToOneField(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='stats', to='authentication.organization')),
],
options={
'abstract': False,
},
),
]