完善数据填充脚本 & 移除 cron 任务 & 兼容旧事件
This commit is contained in:
@@ -184,6 +184,7 @@ values
|
||||
('许昌', 2, (select id from area where name = '河南')),
|
||||
('郑州', 2, (select id from area where name = '河南')),
|
||||
('驻马店', 2, (select id from area where name = '河南')),
|
||||
('平顶山', 2, (select id from area where name = '河南')),
|
||||
('鹤壁', 2, (select id from area where name = '河南')),
|
||||
('丽水', 2, (select id from area where name = '浙江')),
|
||||
('台州', 2, (select id from area where name = '浙江')),
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -614,8 +614,8 @@ create table proxy (
|
||||
updated_at timestamptz default current_timestamp,
|
||||
deleted_at timestamptz
|
||||
);
|
||||
create unique index udx_proxy_mac on proxy (mac) where deleted_at is null;
|
||||
create unique index udx_proxy_ip on proxy (ip) where deleted_at is null;
|
||||
create index idx_proxy_mac on proxy (mac) where deleted_at is null;
|
||||
create index idx_proxy_ip on proxy (ip) where deleted_at is null;
|
||||
create index idx_proxy_created_at on proxy (created_at) where deleted_at is null;
|
||||
|
||||
-- proxy表字段注释
|
||||
|
||||
Reference in New Issue
Block a user