lbry-sdk/lbrynet/extras/daemon/migrator/migrate7to8.py

22 lines
505 B
Python
Raw Normal View History

import sqlite3
import os
2019-01-21 21:55:50 +01:00
def do_migration(conf):
db_path = os.path.join(conf.data_dir, "lbrynet.sqlite")
connection = sqlite3.connect(db_path)
cursor = connection.cursor()
cursor.executescript(
"""
create table reflected_stream (
sd_hash text not null,
reflector_address text not null,
timestamp integer,
primary key (sd_hash, reflector_address)
);
"""
)
connection.commit()
connection.close()