-- +goose Up
-- +goose StatementBegin
NOT EXISTS github_repository (
owner text NOT NULL,
name text NOT NULL,
PRIMARY KEY (owner, name)
);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
IF EXISTS github_repository;
-- +goose StatementEnd