mirror of
https://github.com/lightninglabs/loop
synced 2024-11-09 19:10:47 +00:00
6 lines
221 B
SQL
6 lines
221 B
SQL
-- liquidity_params stores the liquidity parameters for autoloop as a single row
|
|
-- with a blob column, which is the serialized proto request.
|
|
CREATE TABLE liquidity_params (
|
|
id INTEGER PRIMARY KEY,
|
|
params BLOB
|
|
); |