1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/resources/sql/autopatches/20140509.coverage.1.sql

9 lines
351 B
MySQL
Raw Normal View History

CREATE TABLE {$NAMESPACE}_repository.repository_coverage (
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
branchID INT UNSIGNED NOT NULL,
commitID INT UNSIGNED NOT NULL,
pathID INT UNSIGNED NOT NULL,
coverage LONGTEXT NOT NULL COLLATE latin1_bin,
KEY `key_path` (branchID, pathID, commitID)
) ENGINE=InnoDB, COLLATE utf8_general_ci;