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.

15 lines
334 B

  1. -- +goose Up
  2. -- +goose StatementBegin
  3. CREATE TABLE data_channel (
  4. name TEXT NOT NULL PRIMARY KEY,
  5. logged BOOLEAN NOT NULL,
  6. hub BOOLEAN NOT NULL,
  7. event_name TEXT NOT NULL,
  8. location_name TEXT NOT NULL
  9. );
  10. -- +goose StatementEnd
  11. -- +goose Down
  12. -- +goose StatementBegin
  13. DROP TABLE IF EXISTS data_channel;
  14. -- +goose StatementEnd