From ee72678fabb86d66ba7d61d26643cc73df94ee5d Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 10 Nov 2022 15:04:01 +0300 Subject: Migrations: migration for `role_privileges` table * tests/unit/auth/test_create_table_migrations.py: new migration * tests/unit/auth/test_migrations_indexes.py: test new migration --- tests/unit/auth/test_create_table_migrations.py | 3 ++- tests/unit/auth/test_migrations_indexes.py | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/unit/auth/test_create_table_migrations.py b/tests/unit/auth/test_create_table_migrations.py index 9e638d6..fbb9c0f 100644 --- a/tests/unit/auth/test_create_table_migrations.py +++ b/tests/unit/auth/test_create_table_migrations.py @@ -20,7 +20,8 @@ migrations_and_tables = ( ("20221110_03_ka3W0-create-phenotype-resources-table.py", "phenotype_resources"), ("20221110_04_6PRFQ-create-genotype-resources-table.py", "genotype_resources"), ("20221110_05_BaNtL-create-roles-table.py", "roles"), - ("20221110_06_Pq2kT-create-generic-roles-table.py", "generic_roles")) + ("20221110_06_Pq2kT-create-generic-roles-table.py", "generic_roles"), + ("20221110_07_7WGa1-create-role-privileges-table.py", "role_privileges")) @pytest.mark.unit_test @pytest.mark.parametrize("migration_file,the_table", migrations_and_tables) diff --git a/tests/unit/auth/test_migrations_indexes.py b/tests/unit/auth/test_migrations_indexes.py index e18a452..eed0272 100644 --- a/tests/unit/auth/test_migrations_indexes.py +++ b/tests/unit/auth/test_migrations_indexes.py @@ -16,7 +16,9 @@ AND name= ? migrations_tables_and_indexes = ( ("20221110_05_BaNtL-create-roles-table.py", "roles", - "idx_tbl_roles_cols_group_id"),) + "idx_tbl_roles_cols_group_id"), + ("20221110_07_7WGa1-create-role-privileges-table.py", "role_privileges", + "idx_tbl_role_privileges_cols_role_id")) @pytest.mark.unit_test @pytest.mark.parametrize( -- cgit v1.2.3