Files
superlink/sql/migration_v1.0.40.sql
T

9 lines
455 B
SQL

-- ============================================================
-- SuperLink Web - v1.0.40 数据库结构变更
-- social_accounts 增加 updated_at(软碎片列表「上一次更新」时间用)
-- ============================================================
SET NAMES utf8mb4;
ALTER TABLE `social_accounts`
ADD COLUMN `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最近更新时间' AFTER `created_at`;