Files
status/migrations/00004_add_metric_columns_to_statuses.sql
ostiwe b33df27b31 refactor: Switching to a cron system for tasks, restructuring service and status models
Added response time field for Status model, set log level from ENV
2025-10-28 00:55:43 +03:00

8 lines
153 B
SQL

-- +goose Up
alter table statuses
add column response_time integer default null;
-- +goose Down
alter table statuses
drop column response_time;