Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35443971
004.daemonrepos.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
872 B
Subscribers
None
004.daemonrepos.sql
View Options
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
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Feb 8, 2:26 PM (1 d, 15 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
9c/ef/cb13f0313436105f76a28fc81b3a
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment