@@ -53,7 +53,7 @@ describe.runIf(shouldRunPostgresTests)('PostgreSQL Schema Migration Integration
5353 const versions = await query < { version : number } > (
5454 'SELECT version FROM schema_migrations ORDER BY version' ,
5555 ) ;
56- expect ( versions . rows . map ( ( row ) => row . version ) ) . toEqual ( [ 1 , 2 , 3 , 4 , 5 ] ) ;
56+ expect ( versions . rows . map ( ( row ) => row . version ) ) . toEqual ( [ 1 , 2 , 3 , 4 , 5 , 6 ] ) ;
5757
5858 const tables = await query < { tablename : string } > (
5959 `SELECT tablename FROM pg_tables
@@ -90,7 +90,7 @@ describe.runIf(shouldRunPostgresTests)('PostgreSQL Schema Migration Integration
9090 await connect ( ) ;
9191
9292 const versions = await query < { version : number } > ( 'SELECT version FROM schema_migrations' ) ;
93- expect ( versions . rows . map ( ( row ) => row . version ) ) . toEqual ( [ 1 , 2 , 3 , 4 , 5 ] ) ;
93+ expect ( versions . rows . map ( ( row ) => row . version ) ) . toEqual ( [ 1 , 2 , 3 , 4 , 5 , 6 ] ) ;
9494 } ) ;
9595
9696 it ( 'backfills existing JSONB repo permissions into repo_users (single, multi, same user in both roles)' , async ( ) => {
@@ -143,7 +143,7 @@ describe.runIf(shouldRunPostgresTests)('PostgreSQL Schema Migration Integration
143143 const versions = await pool . query < { version : number } > (
144144 'SELECT version FROM schema_migrations ORDER BY version' ,
145145 ) ;
146- expect ( versions . rows . map ( ( r ) => r . version ) ) . toEqual ( [ 1 , 2 , 3 , 4 , 5 ] ) ;
146+ expect ( versions . rows . map ( ( r ) => r . version ) ) . toEqual ( [ 1 , 2 , 3 , 4 , 5 , 6 ] ) ;
147147
148148 // The legacy JSONB column is gone, dropped by v4.
149149 const usersCol = await pool . query (
0 commit comments