GraphQL API and utilities for the rpdata project
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.

14 lines
272 B

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE key (
  4. id TEXT NOT NULL PRIMARY KEY,
  5. name TEXT NOT NULL,
  6. "user" TEXT NOT NULL,
  7. secret TEXT NOT NULL
  8. );
  9. -- +goose StatementEnd
  10. -- +goose Down
  11. -- +goose StatementBegin
  12. DROP TABLE key;
  13. -- +goose StatementEnd