11 lines
265 B
SQL
11 lines
265 B
SQL
START TRANSACTION;
|
|
ALTER TABLE "Menus" ADD "MenuName" character varying(1000);
|
|
|
|
ALTER TABLE "AspNetRoles" ADD "ChineseName" text;
|
|
|
|
INSERT INTO "__EFMigrationsHistory" ("MigrationId", "ProductVersion")
|
|
VALUES ('20250719094443_roleaddchinses', '9.0.6');
|
|
|
|
COMMIT;
|
|
|