Commit 8c4f1b1f by mercymodest

feat:- add sql

parent 1211bfb2
alter table store
alter table store
......@@ -145,3 +145,9 @@ CREATE INDEX idx_user_card_uuid ON daily_pay_open_card_log (user_card_uuid);
-- daily_pay_order_no 索引
CREATE INDEX idx_daily_pay_order_no ON daily_pay_open_card_log (daily_pay_order_no);
alter table daily_pay_open_card_log
add store_uuid BIGINT null comment '门店UUID' after id;
create index idx_store_uuid
on daily_pay_open_card_log (store_uuid);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment