fix: 更新数据字段 name 索引了过长的问题

This commit is contained in:
邹景立 2025-08-16 22:12:52 +08:00
parent f71d2d289d
commit 62c838492f

View File

@ -123,7 +123,7 @@ class InstallAdmin20241010 extends Migrator
['deleted_by', 'biginteger', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '删除用户']], ['deleted_by', 'biginteger', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '删除用户']],
['create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间']], ['create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间']],
], [ ], [
'type', 'code', 'name', 'sort', 'status', 'deleted', 'type', 'code', 'sort', 'status', 'deleted',
], true); ], true);
} }