From 7ef618e88c4a6b04ca477213858810fc95685f4e Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 14 Nov 2022 17:38:30 +0300 Subject: Migrations: Create `user_roles` table * migrations/auth/20221114_05_hQun6-create-user-roles-table.py: new migration * tests/unit/auth/test_migrations_create_tables.py: test new migration * tests/unit/auth/test_migrations_indexes.py: test new migration --- tests/unit/auth/test_migrations_indexes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/unit/auth/test_migrations_indexes.py') diff --git a/tests/unit/auth/test_migrations_indexes.py b/tests/unit/auth/test_migrations_indexes.py index b83b374..bf3cf18 100644 --- a/tests/unit/auth/test_migrations_indexes.py +++ b/tests/unit/auth/test_migrations_indexes.py @@ -21,7 +21,9 @@ migrations_tables_and_indexes = ( "generic_role_privileges", "idx_tbl_generic_role_privileges_cols_generic_role_id"), ("20221114_03_PtWjc-create-group-roles-table.py", "group_roles", - "idx_tbl_group_roles_cols_group_id")) + "idx_tbl_group_roles_cols_group_id"), + ("20221114_06_VNFqI-create-user-roles-table.py", "user_roles", + "idx_tbl_user_roles_cols_user_id")) @pytest.mark.unit_test @pytest.mark.parametrize( -- cgit v1.2.3