Files
Rasadyar_RSI/app/migrations/0046_rasadyarappinfo.py
2026-01-18 11:29:19 +03:30

35 lines
1.5 KiB
Python

# Generated by Django 4.2.19 on 2025-12-01 10:28
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import uuid
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('app', '0045_remove_evacuationdetail_broilerflockrequestid_and_more'),
]
operations = [
migrations.CreateModel(
name='RasadyarAppInfo',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('key', models.UUIDField(default=uuid.uuid4, editable=False, unique=True)),
('create_date', models.DateTimeField(auto_now_add=True)),
('modify_date', models.DateTimeField(auto_now=True)),
('trash', models.BooleanField(default=False)),
('info', models.JSONField(blank=True, null=True)),
('file', models.CharField(blank=True, max_length=700, null=True)),
('created_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='%(class)s_createdby', 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)),
],
options={
'abstract': False,
},
),
]