execute(); // Create the tenshi table DB::prepare("CREATE TABLE `{prefix}tenshi` ( `id` bigint(255) unsigned NOT NULL AUTO_INCREMENT, `uid` bigint(255) unsigned NOT NULL, `startdate` int(64) unsigned NOT NULL, `expiredate` int(64) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin") ->execute(); } public function down() { // Drop the profile fields table DB::prepare("DROP TABLE `{prefix}profilefields`") ->execute(); // Drop the tenshi table DB::prepare("DROP TABLE `{prefix}tenshi`") ->execute(); } }