execute_sql("ALTER TABLE {$CFG->prefix}wiki_pages DROP COLUMN refs_base64");
}
+ if ($oldversion < 2006042801) {
+ modify_database('', 'ALTER TABLE prefix_wiki_pages
+ ALTER COLUMN content SET DEFAULT \'\',
+ ALTER COLUMN refs SET DEFAULT \'\',
+ ALTER COLUMN content DROP NOT NULL,
+ ALTER COLUMN refs DROP NOT NULL');
+ }
+
return true;
}
pagename VARCHAR(160) NOT NULL,
version INTEGER NOT NULL DEFAULT 0,
flags INTEGER DEFAULT 0,
- content bytea,
+ content bytea DEFAULT '',
author VARCHAR(100) DEFAULT 'ewiki',
userid INTEGER NOT NULL DEFAULT 0,
created INTEGER DEFAULT 0,
lastmodified INTEGER DEFAULT 0,
- refs bytea,
+ refs bytea DEFAULT '',
meta TEXT,
hits INTEGER DEFAULT 0,
wiki INT8 NOT NULL
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
/////////////////////////////////////////////////////////////////////////////////
-$module->version = 2006042800; // The current module version (Date: YYYYMMDDXX)
+$module->version = 2006042801; // The current module version (Date: YYYYMMDDXX)
$module->requires = 2005031000; // The current module version (Date: YYYYMMDDXX)
$module->cron = 0; // Period for cron to check this module (secs)