Skip to content

Commit

Permalink
Remove the interactive content database table as this does not exist …
Browse files Browse the repository at this point in the history
…before 4.4
  • Loading branch information
abias committed Jan 6, 2025
1 parent eea7932 commit 9bdbf83
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion db/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
<FIELD NAME="look_aicolcollaboration" TYPE="char" LENGTH="32" NOTNULL="false" SEQUENCE="false"/>
<FIELD NAME="look_aicolcommunication" TYPE="char" LENGTH="32" NOTNULL="false" SEQUENCE="false"/>
<FIELD NAME="look_aicolcontent" TYPE="char" LENGTH="32" NOTNULL="false" SEQUENCE="false"/>
<FIELD NAME="look_aicolinteractivecontent" TYPE="char" LENGTH="32" NOTNULL="false" SEQUENCE="false"/>
<FIELD NAME="look_aicolinterface" TYPE="char" LENGTH="32" NOTNULL="false" SEQUENCE="false"/>
<FIELD NAME="look_navbarcolor" TYPE="char" LENGTH="32" NOTNULL="false" SEQUENCE="false"/>
</FIELDS>
Expand Down
8 changes: 0 additions & 8 deletions db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -449,14 +449,6 @@ function xmldb_theme_boost_union_upgrade($oldversion) {
$dbman->add_field($table, $field);
}

// Define field look_aicolinteractivecontent to be added to theme_boost_union_flavours.
$field = new xmldb_field('look_aicolinteractivecontent', XMLDB_TYPE_CHAR, '32', null, null, null, null);

// Conditionally launch add field look_aicolinteractivecontent.
if (!$dbman->field_exists($table, $field)) {
$dbman->add_field($table, $field);
}

// Define field look_aicolinterface to be added to theme_boost_union_flavours.
$field = new xmldb_field('look_aicolinterface', XMLDB_TYPE_CHAR, '32', null, null, null, null);

Expand Down

0 comments on commit 9bdbf83

Please sign in to comment.