mirror of
https://github.com/lnbits/lnbits.git
synced 2025-06-11 01:11:18 +02:00
pass migrations
This commit is contained in:
parent
c5e0edd940
commit
f49f858902
@ -208,7 +208,8 @@ if os.path.isdir(args.sqlite_path):
|
|||||||
file = os.path.join(args.sqlite_path, "database.sqlite3")
|
file = os.path.join(args.sqlite_path, "database.sqlite3")
|
||||||
check_db_versions(file)
|
check_db_versions(file)
|
||||||
if not args.extensions_only:
|
if not args.extensions_only:
|
||||||
migrate_core(file, exclude_tables)
|
# migrate_core(file, exclude_tables)
|
||||||
|
pass
|
||||||
|
|
||||||
if os.path.isdir(args.sqlite_path):
|
if os.path.isdir(args.sqlite_path):
|
||||||
files = [
|
files = [
|
||||||
@ -221,4 +222,5 @@ excluded_exts = ["ext_lnurlpos.sqlite3", "cashu.sqlite3"]
|
|||||||
for file in files:
|
for file in files:
|
||||||
filename = os.path.basename(file)
|
filename = os.path.basename(file)
|
||||||
if filename.startswith("ext_") and filename not in excluded_exts:
|
if filename.startswith("ext_") and filename not in excluded_exts:
|
||||||
migrate_ext(file)
|
# migrate_ext(file)
|
||||||
|
pass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user