prefix . "wccolumn"; if($wpdb->get_var("SHOW TABLES LIKE '$table_name'") != $table_name) { $sql = "CREATE TABLE " . $table_name . " ( id smallint(4) NOT NULL AUTO_INCREMENT, slugtype text, slug text, target smallint NOT NULL, enabled tinytext NOT NULL, UNIQUE KEY id (id) );"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); dbDelta($sql); add_option("wccolumn_table_version", $wccolumn_table_version); } } function update_wccolumn_table () { } ?>