diff options
author | Frederick Muriuki Muriithi | 2022-11-14 11:37:25 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-14 11:37:25 +0300 |
commit | 0144bfbcec8250d495d17c9728c7fca6beffae72 (patch) | |
tree | 6c69a3bdb2c4ca814f95e36c0c1f87647c178d45 /tests/unit/auth/test_migrations_indexes.py | |
parent | 0cbb54819639ca77266398bb3e4663f74e837d8e (diff) | |
download | genenetwork3-0144bfbcec8250d495d17c9728c7fca6beffae72.tar.gz |
Migrations: Create `group_roles` table
* migrations/auth/20221110_05_BaNtL-create-roles-table.py: modify migration
* migrations/auth/20221114_03_PtWjc-create-group-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
Diffstat (limited to 'tests/unit/auth/test_migrations_indexes.py')
-rw-r--r-- | tests/unit/auth/test_migrations_indexes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/auth/test_migrations_indexes.py b/tests/unit/auth/test_migrations_indexes.py index 87a624f..b83b374 100644 --- a/tests/unit/auth/test_migrations_indexes.py +++ b/tests/unit/auth/test_migrations_indexes.py @@ -15,13 +15,13 @@ AND name= ? """ migrations_tables_and_indexes = ( - ("20221110_05_BaNtL-create-roles-table.py", "roles", - "idx_tbl_roles_cols_group_id"), ("20221110_07_7WGa1-create-role-privileges-table.py", "role_privileges", "idx_tbl_role_privileges_cols_role_id"), ("20221114_01_n8gsF-create-generic-role-privileges-table.py", "generic_role_privileges", - "idx_tbl_generic_role_privileges_cols_generic_role_id")) + "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")) @pytest.mark.unit_test @pytest.mark.parametrize( |