mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
cd05c960ff
Summary: See T315 for an extensive description of this feature. Adds the descibed storage table. Test Plan: Used phpsh to read/write symbol objects. Reviewers: jungejason, nh, tuomaspelkonen, aran Reviewed By: tuomaspelkonen CC: aran, epriestley, tuomaspelkonen Differential Revision: 897
9 lines
327 B
SQL
9 lines
327 B
SQL
CREATE TABLE phabricator_repository.repository_symbol (
|
|
arcanistProjectID INT UNSIGNED NOT NULL,
|
|
symbolName varchar(128) NOT NULL,
|
|
KEY (symbolName),
|
|
symbolType varchar(12) BINARY NOT NULL,
|
|
symbolLanguage varchar(32) BINARY NOT NULL,
|
|
pathID INT UNSIGNED NOT NULL,
|
|
lineNumber INT UNSIGNED NOT NULL
|
|
) ENGINE=InnoDB;
|