Files
ppanel-web/migrations/mysql/02131_timestamptz_last_reported_at.sql
T
Ember Moth 2744c70c5c Initial
2026-07-05 20:27:58 +08:00

10 lines
241 B
SQL

-- migrate:up
-- MySQL datetime type does not have timezone support.
-- The Go code fix (serverPushStatusLogic.go, serverPushUserTrafficLogic.go)
-- removing .UTC() is sufficient for MySQL environments.
SELECT 1;
-- migrate:down
SELECT 1;