sql: add repos_history table
This commit is contained in:
parent
c093e81c23
commit
5bd3ab91f3
1 changed files with 7 additions and 0 deletions
|
@ -16,3 +16,10 @@ CREATE INDEX ix_trgm_repos_description ON
|
|||
|
||||
CREATE INDEX ix_trgm_repos_full_name ON
|
||||
repos USING gin (full_name gin_trgm_ops);
|
||||
|
||||
CREATE TABLE repos_history (
|
||||
ts timestamp DEFAULT current_timestamp,
|
||||
repos integer NOT NULL,
|
||||
fork_repos integer,
|
||||
orig_repos integer
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue