Files
mocksnow/db/migrations/20250324011340_worknotes.sql
Nathan Coad 49e60f7843
All checks were successful
continuous-integration/drone/push Build is passing
enhance implementation
2025-03-24 15:50:03 +11:00

14 lines
321 B
SQL

-- +goose Up
-- +goose StatementBegin
CREATE TABLE worknotes (
id INTEGER PRIMARY KEY AUTOINCREMENT,
incident_number TEXT NOT NULL, -- must map to an incidents.incident_number
note TEXT
);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP TABLE IF EXISTS worknotes;
-- +goose StatementEnd