fix(migration): 修复行动收件箱菜单迁移 — 使用正确的 menus 表字段
This commit is contained in:
@@ -11,7 +11,7 @@ impl MigrationTrait for Migration {
|
|||||||
db.execute_unprepared(
|
db.execute_unprepared(
|
||||||
r#"
|
r#"
|
||||||
INSERT INTO menus (id, tenant_id, parent_id, title, path, icon, sort_order,
|
INSERT INTO menus (id, tenant_id, parent_id, title, path, icon, sort_order,
|
||||||
created_at, updated_at, is_active)
|
visible, menu_type, created_at, updated_at, created_by, updated_by, version)
|
||||||
SELECT
|
SELECT
|
||||||
'b0000003-0000-7000-8000-000000000020'::uuid,
|
'b0000003-0000-7000-8000-000000000020'::uuid,
|
||||||
t.id,
|
t.id,
|
||||||
@@ -20,7 +20,11 @@ impl MigrationTrait for Migration {
|
|||||||
'/health/action-inbox',
|
'/health/action-inbox',
|
||||||
'InboxOutlined',
|
'InboxOutlined',
|
||||||
36,
|
36,
|
||||||
NOW(), NOW(), true
|
true, 'page',
|
||||||
|
NOW(), NOW(),
|
||||||
|
(SELECT id FROM users WHERE tenant_id = t.id LIMIT 1),
|
||||||
|
(SELECT id FROM users WHERE tenant_id = t.id LIMIT 1),
|
||||||
|
1
|
||||||
FROM tenants t
|
FROM tenants t
|
||||||
WHERE NOT EXISTS (
|
WHERE NOT EXISTS (
|
||||||
SELECT 1 FROM menus
|
SELECT 1 FROM menus
|
||||||
|
|||||||
Reference in New Issue
Block a user