Commit c359bf08 by mercymodest

feat:- add sql

parent 562c778e
alter table store_card alter table store_card
...@@ -155,6 +155,12 @@ create index user_card_fee_extension_user_card_change_logs_uuid_index ...@@ -155,6 +155,12 @@ create index user_card_fee_extension_user_card_change_logs_uuid_index
alter table user_management_records alter table user_management_records
modify year_month_str varchar(30) not null comment '年月'; modify year_month_str varchar(30) not null comment '年月';
alter table user_management_records
add store_uuid BIGINT null comment '门店 uuid';
create index user_management_records_store_uuid_index
on user_management_records (store_uuid);
......
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