bruno.quaresma Posted July 19, 2013 Share Posted July 19, 2013 Galera to fazendo um modulo e preciso que ele crie uma tabela no DB durante sua instalação. Fiz dessa forma... estaria certo ou teria outro modo? $sql = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'my_module` ( `app_id` int(10) unsigned NOT NULL auto_increment, `app_name` varchar(255) NOT NULL, `status` int(2) NOT NULL, `title` varchar(255) NOT NULL, PRIMARY KEY (`app_id`)) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8 ;' if(DB::getInstance()->Execute($sql)) return true; return false; Link to comment Share on other sites More sharing options...
ZprestoR Posted July 19, 2013 Share Posted July 19, 2013 Está certo Bruno, essa query irá criar uma nova tabela no banco de dados. Link to comment Share on other sites More sharing options...
Recommended Posts