Commit 811cc646 by 仲光辉

feat: add sql.

parent e12a1dd5
# bill 新增字段 # bill 新增字段
...@@ -67,6 +67,22 @@ alter table bill ...@@ -67,6 +67,22 @@ alter table bill
alter table bill_item alter table bill_item
add pending_audit_amount_pay_time date null comment '当前待审金额支付时间'; add pending_audit_amount_pay_time date null comment '当前待审金额支付时间';
alter table bill
add bill_pay_record_uuid bigint(19) null comment '账单缴费明细 uuid (bill_pay_record)';
alter table bill_item
add bill_pay_record_uuid bigint(19) null comment '账单缴费明细 uuid (bill_pay_record)';
create index bill_bill_pay_record_uuid_index
on bill (bill_pay_record_uuid);
create index bill_item_bill_pay_record_uuid_index
on bill_item (bill_pay_record_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