diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/schema_inc.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 3e7a14f..5776f3b 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -52,9 +52,14 @@ $indices = array ( 'i18n_version_src_idx' => array( 'table' => 'i18n_version_map', 'cols' => 'source_hash', 'opts' => NULL ), 'i18n_version_ver_idx' => array( 'table' => 'i18n_version_map', 'cols' => 'version', 'opts' => NULL ), ); - $gBitInstaller->registerSchemaIndexes( LANGUAGES_PKG_NAME, $indices ); +// ### Sequences +$sequences = array ( + 'i18n_content_trans_id_seq' => array( 'start' => 1 ), +); +$gBitInstaller->registerSchemaSequences( LIBERTY_PKG_NAME, $sequences ); + $gBitInstaller->registerPackageInfo( LANGUAGES_PKG_NAME, array( 'description' => "This package allows you to translate your site into a different language.", 'license' => '<a href="http://www.gnu.org/licenses/licenses.html#LGPL">LGPL</a>', |
