mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
9 lines
318 B
MySQL
9 lines
318 B
MySQL
|
CREATE DATABASE phabricator_xhpastview;
|
||
|
CREATE TABLE phabricator_xhpastview.xhpastview_parsetree (
|
||
|
id int unsigned not null auto_increment primary key,
|
||
|
authorPHID varchar(64) binary,
|
||
|
input longblob not null,
|
||
|
stdout longblob not null,
|
||
|
dateCreated int unsigned not null,
|
||
|
dateModified int unsigned not null
|
||
|
);
|