X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=blobdiff_plain;f=includes%2Finstaller%2FSqliteUpdater.php;h=3a755b6d409fd5f7bad966dddefffe0046edc81b;hb=27c61fb1e94da9114314468fd00bcf129ec064b6;hp=d0ed822397cde60acc68ff0b49159e13ba3ad221;hpb=98514de508e8d2f5094c8c4b9d24063060d4ef58;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index d0ed822397..3a755b6d40 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -191,6 +191,17 @@ class SqliteUpdater extends DatabaseUpdater { 'patch-user_properties-fix-pk.sql' ], [ 'addTable', 'comment', 'patch-comment-table.sql' ], [ 'migrateComments' ], + [ 'renameIndex', 'l10n_cache', 'lc_lang_key', 'PRIMARY', false, + 'patch-l10n_cache-primary-key.sql' ], + + // 1.31 + [ 'addTable', 'content', 'patch-content.sql' ], + [ 'addTable', 'content_models', 'patch-content_models.sql' ], + [ 'addTable', 'slots', 'patch-slots.sql' ], + [ 'addTable', 'slot_roles', 'patch-slot_roles.sql' ], + [ 'migrateArchiveText' ], + [ 'addTable', 'actor', 'patch-actor-table.sql' ], + [ 'migrateActors' ], ]; }