moodle16cleanup: mod/wiki synch upgrade script and .sql with mysql
counterpart, drop the not null constraint to sync with postgres7.sql
This commit is contained in:
@@ -145,6 +145,14 @@ function wiki_upgrade($oldversion) {
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
@@ -52,12 +52,12 @@ CREATE TABLE prefix_wiki_pages (
|
||||
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
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
/// 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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user