mirror of https://github.com/helloxz/onenav.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
309 B
5 lines
309 B
3 years ago
|
CREATE UNIQUE INDEX on_db_logs_sql_name_IDX ON on_db_logs (sql_name);
|
||
|
-- 链接表新增字段topping,默认值0(不置顶),1为置顶,先保留后续使用
|
||
|
ALTER TABLE on_links ADD topping INTEGER DEFAULT 0 NOT NULL;
|
||
|
-- 增加一个备用链接字段
|
||
|
ALTER TABLE on_links ADD url_standby TEXT(256);
|