customer_monthly_score.sql 152 B

123
  1. -- 供应商(customer)增加月度评分
  2. ALTER TABLE `customer`
  3. ADD COLUMN `monthly_score` int DEFAULT NULL COMMENT '月度评分' AFTER `score`;