Files
modelping/migrations/0007_show_on_dashboard.sql
2026-06-24 22:10:25 +08:00

4 lines
213 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.
-- 是否在首页展示该监控卡片1=展示0=仅后台管理可见,仍参与探测)
ALTER TABLE monitors ADD COLUMN show_on_dashboard INTEGER NOT NULL DEFAULT 1 CHECK (show_on_dashboard IN (0, 1));