picobook/src/database/migrations/2-second-migration.sql

6 lines
152 B
MySQL
Raw Normal View History

2024-03-25 00:29:43 -07:00
CREATE TABLE repos (
2023-10-31 20:31:17 -07:00
id text,
repo_fullname text, -- e.g. "username/reponame"
repo_hosttype text, -- "github", "gitea", "gitlab", ...
user_id text
)