mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
23a046b3cd
Summary: This saves lint errors to the path change of current commit. It requires pushed revision. It doesn't save difference from previous commit mentioned in T2038#comment-4 - I don't plan doing it after all, everything would be much more complicated and the amount of data saved with this approach isn't that bad. Test Plan: Applied patch, ran script, verified DB. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2038 Differential Revision: https://secure.phabricator.com/D3899
24 lines
731 B
SQL
24 lines
731 B
SQL
CREATE TABLE {$NAMESPACE}_repository.repository_branch (
|
|
id int unsigned NOT NULL AUTO_INCREMENT,
|
|
repositoryID int unsigned NOT NULL,
|
|
name varchar(255) NOT NULL,
|
|
lintCommit varchar(40),
|
|
dateCreated int unsigned NOT NULL,
|
|
dateModified int unsigned NOT NULL,
|
|
UNIQUE (repositoryID, name),
|
|
PRIMARY KEY (id)
|
|
);
|
|
|
|
CREATE TABLE {$NAMESPACE}_repository.repository_lintmessage (
|
|
id int unsigned NOT NULL AUTO_INCREMENT,
|
|
branchID int unsigned NOT NULL,
|
|
path varchar(512) NOT NULL,
|
|
line int unsigned NOT NULL,
|
|
code varchar(32) NOT NULL,
|
|
severity varchar(16) NOT NULL,
|
|
name varchar(255) NOT NULL,
|
|
description text NOT NULL,
|
|
INDEX (branchID, path(64)),
|
|
INDEX (branchID, code, path(64)),
|
|
PRIMARY KEY (id)
|
|
);
|