Files
runbin/migrations/0003_add_compilelog_column.sql
2025-04-14 22:57:36 +08:00

6 lines
156 B
SQL

-- +goose Up
ALTER TABLE pastes ADD COLUMN IF NOT EXISTS compile_log TEXT NOT NULL DEFAULT '';
-- +goose Down
ALTER TABLE pastes DROP COLUMN compile_log;