You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
458 B
18 lines
458 B
|
8 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
/**
|
||
|
|
* Config the plugin
|
||
|
|
* @author Enrique Alcaraz Lopez
|
||
|
|
* @package chamilo.plugin.redirection
|
||
|
|
*/
|
||
|
|
|
||
|
|
$table = Database::get_main_table('plugin_redirection');
|
||
|
|
|
||
|
|
$sql = "CREATE TABLE IF NOT EXISTS $table (
|
||
|
|
id INT unsigned NOT NULL auto_increment PRIMARY KEY,
|
||
|
|
user_id INT unsigned NOT NULL DEFAULT 0,
|
||
|
|
url VARCHAR(255) NOT NULL DEFAULT ''
|
||
|
|
)";
|
||
|
|
|
||
|
|
Database::query($sql);
|