9 lines
392 B
SQL
9 lines
392 B
SQL
|
|
-- =====================================================================
|
||
|
|
-- RENDER SCHEMA — node disk usage (reported by the agent heartbeat)
|
||
|
|
-- =====================================================================
|
||
|
|
|
||
|
|
SET search_path TO render, public;
|
||
|
|
|
||
|
|
ALTER TABLE render_nodes ADD COLUMN IF NOT EXISTS last_disk_pct INT;
|
||
|
|
ALTER TABLE render_nodes ADD COLUMN IF NOT EXISTS disk_total_gb INT;
|