mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08:00
8 lines
269 B
SQL
8 lines
269 B
SQL
delete from sys_menu where name in ('AddConfig', 'EditConfig', 'DeleteConfig');
|
|
|
|
delete from sys_menu where name = 'PluginConfig';
|
|
|
|
drop table if exists sys_config;
|
|
|
|
select setval(pg_get_serial_sequence('sys_menu', 'id'), coalesce(max(id), 0) + 1, true) from sys_menu;
|