forked from LBRYCommunity/lbry-sdk
add missing migrator line
This commit is contained in:
parent
dd665a758d
commit
c6a3c05a0c
1 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,8 @@ def migrate_db(conf, start, end):
|
|||
from .migrate7to8 import do_migration
|
||||
elif current == 8:
|
||||
from .migrate8to9 import do_migration
|
||||
elif current == 9:
|
||||
from .migrate9to10 import do_migration
|
||||
else:
|
||||
raise Exception("DB migration of version {} to {} is not available".format(current,
|
||||
current+1))
|
||||
|
|
Loading…
Reference in a new issue