2018-03-27 14:58:29 -04:00
|
|
|
import sqlite3
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
2019-01-21 15:55:50 -05:00
|
|
|
def do_migration(conf):
|
|
|
|
db_path = os.path.join(conf.data_dir, "lbrynet.sqlite")
|
2018-03-27 14:58:29 -04:00
|
|
|
connection = sqlite3.connect(db_path)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.executescript("alter table blob add last_announced_time integer;")
|
2018-03-28 18:47:37 -04:00
|
|
|
cursor.executescript("alter table blob add single_announce integer;")
|
2018-03-27 14:58:29 -04:00
|
|
|
cursor.execute("update blob set next_announce_time=0")
|
|
|
|
connection.commit()
|
|
|
|
connection.close()
|