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.
8 lines
327 B
8 lines
327 B
3 years ago
|
-- 分类目录增加字体图标列
|
||
|
ALTER TABLE on_categorys ADD font_icon TEXT(32);
|
||
|
-- 链接表新增字段topping,默认值0(不置顶),1为置顶,先保留后续使用
|
||
|
ALTER TABLE on_links ADD topping INTEGER DEFAULT 0 NOT NULL;
|
||
|
-- 增加一个备用链接字段
|
||
|
ALTER TABLE on_links ADD url_standby TEXT(256);
|
||
|
|