Update install.php

This commit is contained in:
Josh North 2014-08-14 10:12:30 -04:00
parent fd63df8c3f
commit 69341f6cd8

View File

@ -9,13 +9,3 @@
* return false;
*
*/
$sql = "CREATE TABLE IF NOT EXISTS HelloWorld_settings (
`key` varchar(255) NOT NULL default '',
`value` varchar(255) NOT NULL default '',
PRIMARY KEY (`key`)
);";
$check = sql($sql);
if (DB::IsError($check)) {
die_freepbx( "Can not create `HelloWorld` table: " . $check->getMessage() . "\n");
}