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.
15 lines
317 B
15 lines
317 B
-- +goose Up
|
|
-- +goose StatementBegin
|
|
CREATE TABLE script_variable (
|
|
scope VARCHAR(255) NOT NULL,
|
|
name VARCHAR(255) NOT NULL,
|
|
value TEXT NOT NULL,
|
|
|
|
PRIMARY KEY (scope, name)
|
|
)
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
DROP TABLE IF EXISTS script_variable;
|
|
-- +goose StatementEnd
|