Files
vctp2/db/migrations/20250116101000_snapshot_count.sql
Nathan Coad 8df1d145f8
All checks were successful
continuous-integration/drone/push Build is passing
add record size to hourly snapshot page
2026-01-14 19:43:32 +11:00

6 lines
170 B
SQL

-- +goose Up
ALTER TABLE snapshot_registry ADD COLUMN snapshot_count BIGINT NOT NULL DEFAULT 0;
-- +goose Down
ALTER TABLE snapshot_registry DROP COLUMN snapshot_count;