All checks were successful
continuous-integration/drone/push Build is passing
14 lines
321 B
SQL
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
|