Files
fm_be/migrations/20260422_helicopters_aog_reason.sql
2026-07-16 22:16:45 +07:00

8 lines
158 B
SQL

-- +goose Up
ALTER TABLE helicopters
ADD COLUMN aog_reason TEXT NULL AFTER air_on_ground;
-- +goose Down
ALTER TABLE helicopters
DROP COLUMN aog_reason;