예제 #1
0
파일: install.php 프로젝트: Godjqb/Php-test
function upgrade_20beta11()
{
    add_event_time();
    add_calendar_config();
    create_version_table();
}
예제 #2
0
function upgrade_20beta11()
{
    add_event_time();
    add_calendar_config();
    add_categories_gid();
    echo "<p>Adding groups table.</p>";
    create_table("groups", "`gid` int(11) NOT NULL AUTO_INCREMENT,\n" . "`cid` int(11),\n" . "`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,\n" . "PRIMARY KEY (`gid`)\n");
    echo "<p>Adding user_groups table.</p>";
    create_table("user_groups", "`gid` int(11),\n" . "`uid` int(11)\n");
    create_version_table();
}