cyberia/research/mimi/sql/migrations/000003_github.sql

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

-- +goose Down
-- +goose StatementBegin
DROP TABLE IF EXISTS github_repository;
-- +goose StatementEnd

Graph