diff options
Diffstat (limited to 'admin/schema_inc.php')
| -rwxr-xr-x | admin/schema_inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 6f40c0e..f036298 100755 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -69,11 +69,11 @@ $gBitInstaller->registerPackageInfo( ARTICLES_PKG_NAME, array( // these sequences are automatically generated, but Firebird and MSSQL prefers they exist // Starting the numbering off at 5 for types to allow room for the INSERTs later. -$sequences = array ( - 'articles_topics_id_seq' => array( 'start' => 1 ), - 'article_types_id_seq' => array( 'start' => 5 ), - 'articles_article_id_seq' => array( 'start' => 1 ), -); +$sequences = [ + 'articles_topics_id_seq' => [ 'start' => 1 ], + 'article_types_id_seq' => [ 'start' => 5 ], + 'articles_article_id_seq' => [ 'start' => 1 ], +]; $gBitInstaller->registerSchemaSequences( ARTICLES_PKG_NAME, $sequences ); |
