init push

This commit is contained in:
2026-07-16 22:16:45 +07:00
commit 8b068bdb10
1021 changed files with 332816 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
-- +goose Up
ALTER TABLE fm_reports
ADD COLUMN completed_at DATETIME(3) NULL DEFAULT NULL AFTER engine2_ptc_n2,
ADD COLUMN completed_by BINARY(16) NULL DEFAULT NULL AFTER completed_at,
ADD KEY idx_fm_reports_completed_at (completed_at);
-- +goose Down
ALTER TABLE fm_reports
DROP KEY idx_fm_reports_completed_at,
DROP COLUMN completed_by,
DROP COLUMN completed_at;