SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'customer_group' already exists The SQL being executed was: CREATE TABLE customer_group
( id
INT( 12 ) NOT NULL AUTO_INCREMENT PRIMARY KEY , name
VARCHAR( 200 ) NULL COMMENT '用户组名称', created_at
INT( 12 ) NULL COMMENT '创建时间', updated_at
INT( 12 ) NOT NULL COMMENT '更新时间', discount_rate
DECIMAL( 12, 2 ) NULL COMMENT '折扣率', min_order_der_amount
DECIMAL( 12, 2 ) NULL COMMENT '最低订单销售额' ) ENGINE = INNODB;
