You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
loop/loopdb/sqlc/migrations/000002_liquidity_params.up.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
);