hyapp-server/server/admin/migrations/043_admin_app_splash_display_duration.sql
2026-06-11 01:02:16 +08:00

6 lines
231 B
SQL
Raw Permalink 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.

SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTER TABLE admin_app_splash_screens
ADD COLUMN display_duration_ms INT NOT NULL DEFAULT 3000 COMMENT '开屏展示时长毫秒0 表示客户端默认值'
AFTER description;