Commit a57f8e4e by mercymodest

feat:- add sql

parent e9bc01c9
alter table t_device_group
alter table t_device_group
......@@ -129,4 +129,14 @@ alter table t_device_group
create index t_device_group_order_id_index
on t_device_group (order_id);
alter table t_device_group
change order_id dynamo_db_order_id bigint null comment '订单ID。 作为 DynamoDB#order_id';
drop index t_device_group_order_id_index on t_device_group;
create index t_device_group_dynamo_db_order_id_index
on t_device_group (dynamo_db_order_id);
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