Files
ProxyPanel/sql/update/20190404.sql
2020-08-05 03:20:19 +08:00

22 lines
642 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 使用软删除移除is_del字段
ALTER TABLE `article`
DROP COLUMN `is_del`;
ALTER TABLE `coupon`
DROP COLUMN `is_del`;
ALTER TABLE `goods`
DROP COLUMN `is_del`;
ALTER TABLE `article`
ADD COLUMN `deleted_at` DATETIME NULL DEFAULT NULL COMMENT '删除时间' AFTER `updated_at`;
ALTER TABLE `coupon`
ADD COLUMN `deleted_at` DATETIME NULL DEFAULT NULL COMMENT '删除时间' AFTER `updated_at`;
ALTER TABLE `goods`
ADD COLUMN `deleted_at` DATETIME NULL DEFAULT NULL COMMENT '删除时间' AFTER `updated_at`;
ALTER TABLE `invite`
ADD COLUMN `deleted_at` DATETIME NULL DEFAULT NULL COMMENT '删除时间' AFTER `updated_at`;