Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/resources/sql/patches/021.xhpastview.sql
12250 views
1
CREATE TABLE {$NAMESPACE}_xhpastview.xhpastview_parsetree (
2
id int unsigned not null auto_increment primary key,
3
authorPHID varchar(64) binary,
4
input longblob not null,
5
stdout longblob not null,
6
dateCreated int unsigned not null,
7
dateModified int unsigned not null
8
);
9
10