33 lines
1.3 KiB
Python
33 lines
1.3 KiB
Python
# Generated by Django 4.2.20 on 2026-03-24 09:34
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Organization',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=100, verbose_name='公司名称')),
|
|
('logo', models.ImageField(blank=True, null=True, upload_to='org_logos/')),
|
|
('description', models.TextField(blank=True, verbose_name='公司简介')),
|
|
('email', models.EmailField(blank=True, max_length=254, verbose_name='联系邮箱')),
|
|
('is_active', models.BooleanField(default=True)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('parent', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='children', to='organizations.organization', verbose_name='上级公司')),
|
|
],
|
|
options={
|
|
'verbose_name': '组织架构',
|
|
'verbose_name_plural': '组织架构',
|
|
},
|
|
),
|
|
]
|