20200415.sql 661 B

1234567891011121314151617
  1. update `config` SET `name` = 'codepay_url', `value` = 'https://codepay.fateqq.com/creat_order/?' where `config`.`id` = 43;
  2. update `config` SET `name` = 'codepay_id', `value` = '' where `config`.`id` = 44;
  3. update `config` SET `name` = 'codepay_key', `value` = '' where `config`.`id` = 45;
  4. update `config` SET `name` = 'website_callback_url', `value` = '' where `config`.`id` = 50;
  5. alter table `payment`
  6. drop `order_sn`,
  7. drop `pay_way`,
  8. drop `qr_id`,
  9. drop `qr_url`,
  10. drop `qr_code`,
  11. drop `qr_local_url`;
  12. drop table `order_goods`
  13. ALTER TABLE `payment`
  14. ADD COLUMN `qr_code` text COLLATE utf8mb4_unicode_ci COMMENT '支付二维码' AFTER `amount`;