Skip to content

Commit 80ee0f4

Browse files
committed
feat: add additional_link column to events table
1 parent 0879dbc commit 80ee0f4

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
-- +goose Up
2+
-- +goose StatementBegin
3+
SELECT 'up SQL query';
4+
5+
ALTER TABLE events
6+
ADD COLUMN additional_link TEXT;
7+
-- +goose StatementEnd
8+
9+
-- +goose Down
10+
-- +goose StatementBegin
11+
SELECT 'down SQL query';
12+
13+
ALTER TABLE events
14+
DROP COLUMN additional_link;
15+
-- +goose StatementEnd

0 commit comments

Comments
 (0)