From f70d30bfa62f7b27f7a4e8f20736047810b3a4d9 Mon Sep 17 00:00:00 2001 From: calle <93376500+callebtc@users.noreply.github.com> Date: Sat, 19 Nov 2022 14:34:13 -0600 Subject: [PATCH] Update migrations.py --- lnbits/extensions/withdraw/migrations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lnbits/extensions/withdraw/migrations.py b/lnbits/extensions/withdraw/migrations.py index e30f88d09..0c6ed4fc1 100644 --- a/lnbits/extensions/withdraw/migrations.py +++ b/lnbits/extensions/withdraw/migrations.py @@ -3,7 +3,7 @@ async def m001_initial(db): Creates an improved withdraw table and migrates the existing data. """ await db.execute( - """ + f""" CREATE TABLE withdraw.withdraw_links ( id TEXT PRIMARY KEY, wallet TEXT, @@ -28,7 +28,7 @@ async def m002_change_withdraw_table(db): Creates an improved withdraw table and migrates the existing data. """ await db.execute( - """ + f""" CREATE TABLE withdraw.withdraw_link ( id TEXT PRIMARY KEY, wallet TEXT,