clipbucket/upload/plugins/embed_video_mod/install_embed_video_mod.php
2013-10-07 12:17:06 +00:00

18 lines
No EOL
290 B
PHP

<?php
require_once('../includes/common.php');
/**
* This file is used to install Embed Video Mod
*/
function install_embed_video_mode()
{
global $db;
$db->Execute("ALTER TABLE `".tbl('video')."` ADD `embed_code` TEXT NOT NULL ");
}
install_embed_video_mode();
?>