Add missing 'created' column to history_treatment table

This was a simple copy-paste error.
This commit is contained in:
Eli Ribble 2025-11-11 20:26:31 +00:00
parent 1a2e9f8a18
commit ec5203a6a6
No known key found for this signature in database

View file

@ -0,0 +1,5 @@
-- +goose Up
ALTER TABLE history_treatment ADD COLUMN created TIMESTAMP;
-- +goose Down
ALTER TABLE history_treatment DROP COLUMN created;