Path: blob/master/resources/sql/patches/004.daemonrepos.sql
12250 views
create table {$NAMESPACE}_repository.repository_commit (1id int unsigned not null auto_increment primary key,2repositoryPHID varchar(64) binary not null,3phid varchar(64) binary not null,4commitIdentifier varchar(40) binary not null,5epoch int unsigned not null,6unique key (phid),7unique key (repositoryPHID, commitIdentifier)8);91011create table {$NAMESPACE}_timeline.timeline_event (12id int unsigned not null auto_increment primary key,13type char(4) binary not null,14key (type, id)15);1617create table {$NAMESPACE}_timeline.timeline_eventdata (18id int unsigned not null auto_increment primary key,19eventID int unsigned not null,20eventData longblob not null,21unique key (eventID)22);2324create table {$NAMESPACE}_timeline.timeline_cursor (25name varchar(255) COLLATE `binary` not null primary key,26position int unsigned not null27);282930