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

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE script_variable (
  4. scope VARCHAR(255) NOT NULL,
  5. name VARCHAR(255) NOT NULL,
  6. value TEXT NOT NULL,
  7. PRIMARY KEY (scope, name)
  8. )
  9. -- +goose StatementEnd
  10. -- +goose Down
  11. -- +goose StatementBegin
  12. DROP TABLE IF EXISTS script_variable;
  13. -- +goose StatementEnd