You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
336 B
13 lines
336 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE event_handler
|
|
ADD COLUMN from_tod VARCHAR(255),
|
|
ADD COLUMN to_tod VARCHAR(255);
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE event_handler
|
|
DROP COLUMN IF EXISTS from_tod,
|
|
DROP COLUMN IF EXISTS to_tod;
|
|
-- +goose StatementEnd
|