8 lines
241 B
MySQL
8 lines
241 B
MySQL
![]() |
CREATE TABLE games (
|
||
|
id text,
|
||
|
name text, -- user defined
|
||
|
repo_fullname text, -- e.g. "username/reponame"
|
||
|
repo_hosttype text, -- "github", "gitea", "gitlab", ...
|
||
|
repo_token text, -- an api auth token to read from the repo
|
||
|
user_id text
|
||
|
)
|