diff options
author | Frederick Muriuki Muriithi | 2022-11-10 10:20:02 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-11-10 10:20:02 +0300 |
commit | a30b8e2d2ce14896e2a43304f684eb88876c8e8c (patch) | |
tree | ea2b6e18542c2f56812178ca651b52505e8819a5 /gn3 | |
parent | d80bff6898019ff8793044a3c9e1fb824b763800 (diff) | |
download | genenetwork3-a30b8e2d2ce14896e2a43304f684eb88876c8e8c.tar.gz |
Migrations: Add migration for 'resources' table
* gn3/migrations.py: Minor change
* migrations/auth/20221110_01_WtZ1I-create-resources-table.py: new migration
* tests/unit/auth/test_create_table_migrations.py: test new migration
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/migrations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/migrations.py b/gn3/migrations.py index 7f8d694..3451e07 100644 --- a/gn3/migrations.py +++ b/gn3/migrations.py @@ -2,8 +2,8 @@ from pathlib import Path from typing import Union -from yoyo.backends import DatabaseBackend from yoyo import read_migrations +from yoyo.backends import DatabaseBackend from yoyo.migrations import Migration, MigrationList class MigrationNotFound(Exception): |