db changes to data_content table

This commit is contained in:
moodler
2006-01-19 09:06:22 +00:00
parent 7972cc46bd
commit dfe9354f2e
7 changed files with 244 additions and 2 deletions
+8
View File
@@ -6,6 +6,14 @@ function data_upgrade($oldversion) {
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");
}
return true;
}