File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ public static function create() {
3333 id INTEGER NOT NULL,
3434 sitename VARCHAR,
3535 site_type VARCHAR,
36+ site_title VARCHAR,
3637 proxy_type VARCHAR,
3738 cache_type VARCHAR,
3839 site_path VARCHAR,
@@ -45,15 +46,14 @@ public static function create() {
4546 db_user VARCHAR,
4647 db_password VARCHAR,
4748 db_host VARCHAR,
48- is_hhvm BOOLEAN DEFAULT 0,
49- is_pagespeed BOOLEAN DEFAULT 0,
49+ wp_user VARCHAR,
50+ wp_pass VARCHAR,
51+ email VARCHAR,
5052 php_version VARCHAR,
5153 PRIMARY KEY (id),
5254 UNIQUE (sitename),
5355 CHECK (is_enabled IN (0, 1)),
54- CHECK (is_ssl IN (0, 1)),
55- CHECK (is_hhvm IN (0, 1)),
56- CHECK (is_pagespeed IN (0, 1))
56+ CHECK (is_ssl IN (0, 1))
5757 ); " ;
5858 self ::$ db ->exec ( $ query );
5959 }
You can’t perform that action at this time.
0 commit comments