Files
phabricator/resources/sql/patches/021.xhpastview.sql

9 lines
318 B
MySQL
Raw Normal View History

2011-04-06 19:17:05 -07:00
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
);