1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
<?php
function data_upgrade($oldversion) {
/// This function does anything necessary to upgrade
/// older versions to match current functionality
global $CFG;
if ($oldversion < 2006011900) {
table_column("data_content", "", "content1", "text", "", "", "", "not null");
table_column("data_content", "", "content2", "text", "", "", "", "not null");
table_column("data_content", "", "content3", "text", "", "", "", "not null");
table_column("data_content", "", "content4", "text", "", "", "", "not null");
}
if ($oldversion < 2006011901) {
table_column("data", "", "approval", "integer", "4", "unsigned", "0", "not null");
table_column("data_records", "", "approved", "integer", "4", "unsigned", "0", "not null");
}
if ($oldversion < 2006020801) {
table_column("data", "", "scale", "integer");
table_column("data", "", "assessed", "integer");
table_column("data", "", "assesspublic", "integer");
}
if ($oldversion < 2006022700) {
table_column("data_comments", "", "created", "integer");
table_column("data_comments", "", "modified", "integer");
}
if ($oldversion < 2006030700) {
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'view', 'data', 'name');");
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'add', 'data', 'name')");
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'update', 'data', 'name')");
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'record delete', 'data', 'name')");
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'fields add', 'data_fields', 'name')");
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'fields update', 'data_fields', 'name')");
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'templates saved', 'data', 'name')");
modify_database('', "INSERT INTO prefix_log_display (module, action, mtable, field) VALUES ('data', 'templates defaults', 'data', 'name')");
}
if ($oldversion < 2006032700) {
table_column('data', '', 'defaultsort', 'integer', '10', 'unsigned', '0');
table_column('data', '', 'defaultsortdir', 'tinyint', '4', 'unsigned', '0', 'not null', 'defaultsort');
table_column('data', '', 'editany', 'tinyint', '4', 'unsigned', '0', 'not null', 'defaultsortdir');
}
if ($oldversion < 2006032900) {
table_column('data', '', 'csstemplate', 'text', '', '', '', 'not null', 'rsstemplate');
}
if ($oldversion < 2006050500) { // drop all tables, and create from scratch
execute_sql("DROP TABLE {$CFG->prefix}data", false);
execute_sql("DROP TABLE {$CFG->prefix}data_content", false);
execute_sql("DROP TABLE {$CFG->prefix}data_fields", false);
execute_sql("DROP TABLE {$CFG->prefix}data_records", false);
execute_sql("DROP TABLE {$CFG->prefix}data_comments", false);
execute_sql("DROP TABLE {$CFG->prefix}data_ratings", false);
modify_database('',"CREATE TABLE prefix_data (
id SERIAL PRIMARY KEY,
course integer NOT NULL default '0',
name varchar(255) NOT NULL default '',
intro text NOT NULL default '',
ratings integer NOT NULL default '0',
comments integer NOT NULL default '0',
timeavailablefrom integer NOT NULL default '0',
timeavailableto integer NOT NULL default '0',
timeviewfrom integer NOT NULL default '0',
timeviewto integer NOT NULL default '0',
participants integer NOT NULL default '0',
requiredentries integer NOT NULL default '0',
requiredentriestoview integer NOT NULL default '0',
maxentries integer NOT NULL default '0',
rssarticles integer NOT NULL default '0',
singletemplate text NOT NULL default '',
listtemplate text NOT NULL default '',
listtemplateheader text NOT NULL default '',
listtemplatefooter text NOT NULL default '',
addtemplate text NOT NULL default '',
rsstemplate text NOT NULL default '',
csstemplate text NOT NULL default '',
approval integer NOT NULL default '0',
scale integer NOT NULL default '0',
assessed integer NOT NULL default '0',
assesspublic integer NOT NULL default '0',
defaultsort integer NOT NULL default '0',
defaultsortdir integer NOT NULL default '0',
editany integer NOT NULL default '0'
);
CREATE TABLE prefix_data_content (
id SERIAL PRIMARY KEY,
fieldid integer NOT NULL default '0',
recordid integer NOT NULL default '0',
content text NOT NULL default '',
content1 text NOT NULL default '',
content2 text NOT NULL default '',
content3 text NOT NULL default '',
content4 text NOT NULL default ''
);
CREATE TABLE prefix_data_fields (
id SERIAL PRIMARY KEY,
dataid integer NOT NULL default '0',
type varchar(255) NOT NULL default '',
name varchar(255) NOT NULL default '',
description text NOT NULL default '',
param1 text NOT NULL default '',
param2 text NOT NULL default '',
param3 text NOT NULL default '',
param4 text NOT NULL default '',
param5 text NOT NULL default '',
param6 text NOT NULL default '',
param7 text NOT NULL default '',
param8 text NOT NULL default '',
param9 text NOT NULL default '',
param10 text NOT NULL default ''
);
CREATE TABLE prefix_data_records (
id SERIAL PRIMARY KEY,
userid integer NOT NULL default '0',
groupid integer NOT NULL default '0',
dataid integer NOT NULL default '0',
timecreated integer NOT NULL default '0',
timemodified integer NOT NULL default '0',
approved integer NOT NULL default '0'
);
CREATE TABLE prefix_data_comments (
id SERIAL PRIMARY KEY,
userid integer NOT NULL default '0',
recordid integer NOT NULL default '0',
content text NOT NULL default '',
created integer NOT NULL default '0',
modified integer NOT NULL default '0'
);
CREATE TABLE prefix_data_ratings (
id SERIAL PRIMARY KEY,
userid integer NOT NULL default '0',
recordid integer NOT NULL default '0',
rating integer NOT NULL default '0'
);");
}
if ($oldversion < 2006052400) {
table_column('data','','rsstitletemplate','text','','','','not null','rsstemplate');
}
return true;
}
?>
|