mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
28 lines
872 B
MySQL
28 lines
872 B
MySQL
|
create table phabricator_repository.repository_commit (
|
||
|
id int unsigned not null auto_increment primary key,
|
||
|
repositoryPHID varchar(64) binary not null,
|
||
|
phid varchar(64) binary not null,
|
||
|
commitIdentifier varchar(40) binary not null,
|
||
|
epoch int unsigned not null,
|
||
|
unique key (phid),
|
||
|
unique key (repositoryPHID, commitIdentifier)
|
||
|
);
|
||
|
|
||
|
create database phabricator_timeline;
|
||
|
create table phabricator_timeline.timeline_event (
|
||
|
id int unsigned not null auto_increment primary key,
|
||
|
type char(4) binary not null,
|
||
|
key (type, id)
|
||
|
);
|
||
|
|
||
|
create table phabricator_timeline.timeline_eventdata (
|
||
|
id int unsigned not null auto_increment primary key,
|
||
|
eventID int unsigned not null,
|
||
|
eventData longblob not null,
|
||
|
unique key (eventID)
|
||
|
);
|
||
|
|
||
|
create table phabricator_timeline.timeline_cursor (
|
||
|
name varchar(255) not null primary key,
|
||
|
position int unsigned not null
|
||
|
);
|