private static function plugin_create_db()
 {
     $version = get_option(self::GEEKS_REFERRALS_VERSION, '1.0');
     try {
         WP_Geeks_Referrals_Model::create_db($version);
     } catch (Exeption $e) {
         WP_4G_Notice::throw_notice(WP_4G_Notice::ADMIN_ERROR, $e->getMessage());
     }
 }