public static function uninstall() {
$db = XenForo_Application::get('db');
$db->query("
ALTER TABLE `xf_notice` DROP `noticeClass`
");
$app = new XenForo_Application;
$app->resetDynamicClassCache();
$noticeM = XenForo_Model::create('XenForo_Model_Notice');
$noticeM->rebuildNoticeCache();
}