Commit b1444cf2 by mercymodest

feat:- add sql

parent 8c4f1b1f
alter table store alter table store
...@@ -150,4 +150,14 @@ alter table daily_pay_open_card_log ...@@ -150,4 +150,14 @@ alter table daily_pay_open_card_log
add store_uuid BIGINT null comment '门店UUID' after id; add store_uuid BIGINT null comment '门店UUID' after id;
create index idx_store_uuid create index idx_store_uuid
on daily_pay_open_card_log (store_uuid); on daily_pay_open_card_log (store_uuid);
\ No newline at end of file
alter table user_card_change_logs
add daily_pay_remark varchar(200) null;
alter table user_card_change_logs
add daily_pay_current_total_price decimal(10, 2) null comment '每日付总售价';
alter table user_card_change_logs
add daily_pay_periods int null comment '每日付总期数';
\ 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