Skip to content

Commit

Permalink
Prepared Restplugin v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
disc5 committed Nov 17, 2015
1 parent 46aeacb commit e4d6577
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


$id = "rest";
$version = "1.2";
$version = "1.3";

$ilias_min_version = "4.0.0";
$ilias_max_version = "5.2.0";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,7 @@
'length' => 1,
'notnull' => true,
'default' => 0
),
'description' => array(
'type' => 'text',
'length' => 1000,
'fixed' => false,
'notnull' => false,
'default' => ""
),
)
);
$ilDB->createTable("ui_uihk_rest_keys", $fields, true);
$ilDB->addPrimaryKey("ui_uihk_rest_keys", array("id"));
Expand Down Expand Up @@ -467,3 +460,10 @@ function gen_uuid() {
foreach (glob(realpath(__DIR__).'/extensions/*/sql/dbupdate.php') as $filename)
include_once($filename);
?>

<#14>
<?php
global $ilLog;
global $ilDB;
$ilDB->manipulate('ALTER TABLE ui_uihk_rest_keys ADD description VARCHAR( 1000 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL');
?>

0 comments on commit e4d6577

Please sign in to comment.