fix: add network column for migration
This commit is contained in:
parent
48ab496cb4
commit
798b8e5fdf
1 changed files with 3 additions and 2 deletions
|
|
@ -285,9 +285,10 @@ def migrate_ext(sqlite_db_file, schema, ignore_missing=True):
|
||||||
address_no,
|
address_no,
|
||||||
balance,
|
balance,
|
||||||
type,
|
type,
|
||||||
fingerprint
|
fingerprint,
|
||||||
|
network
|
||||||
)
|
)
|
||||||
VALUES (%s, %s, %s, %s, %s, %s, %s, %s);
|
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s);
|
||||||
"""
|
"""
|
||||||
insert_to_pg(q, res.fetchall())
|
insert_to_pg(q, res.fetchall())
|
||||||
# ADDRESSES
|
# ADDRESSES
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue