diff options
author | Frederick Muriuki Muriithi | 2022-12-19 13:43:29 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-12-21 06:13:41 +0300 |
commit | d6f699bb0d2a9edca539733a16f786a1b7e957ae (patch) | |
tree | b889d42a1b8e3921ff0265fa7aa7fd00fd68a639 /tests | |
parent | 58d6c8aa771766d34f7ac5b2e67c57c9a514f77f (diff) | |
download | genenetwork3-d6f699bb0d2a9edca539733a16f786a1b7e957ae.tar.gz |
migrations: create oauth2_tokens table
* migrations/auth/20221219_02_buSEU-create-oauth2-tokens-table.py
* tests/unit/auth/test_migrations_create_tables.py
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/auth/test_migrations_create_tables.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/auth/test_migrations_create_tables.py b/tests/unit/auth/test_migrations_create_tables.py index 4a606b5..30644f5 100644 --- a/tests/unit/auth/test_migrations_create_tables.py +++ b/tests/unit/auth/test_migrations_create_tables.py @@ -27,7 +27,8 @@ migrations_and_tables = ( ("20221117_02_fmuZh-create-group-users-table.py", "group_users"), ("20221206_01_BbeF9-create-group-user-roles-on-resources-table.py", "group_user_roles_on_resources"), - ("20221219_01_CI3tN-create-oauth2-clients-table.py", "oauth2_clients")) + ("20221219_01_CI3tN-create-oauth2-clients-table.py", "oauth2_clients"), + ("20221219_02_buSEU-create-oauth2-tokens-table.py", "oauth2_tokens"), @pytest.mark.unit_test @pytest.mark.parametrize("migration_file,the_table", migrations_and_tables) |