From 5fea68a9b9f89dfffd2d5ab6ea087b55d6cc3665 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 20 Sep 2021 09:23:42 -0400 Subject: [PATCH] default is_mine to true during migration --- lbry/extras/daemon/migrator/migrate14to15.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/extras/daemon/migrator/migrate14to15.py b/lbry/extras/daemon/migrator/migrate14to15.py index a0b7257e3..72fbfcb34 100644 --- a/lbry/extras/daemon/migrator/migrate14to15.py +++ b/lbry/extras/daemon/migrator/migrate14to15.py @@ -9,7 +9,7 @@ def do_migration(conf): cursor.executescript(""" alter table blob add column added_on integer not null default 0; - alter table blob add column is_mine integer not null default 0; + alter table blob add column is_mine integer not null default 1; """) connection.commit()