mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 14:51:05 +01:00
All databases are now saved together in the same LNBITS_DATA_FOLDER. Extensions have to define a schema.yml file for creating the necessary database.
18 lines
353 B
SQL
18 lines
353 B
SQL
CREATE TABLE IF NOT EXISTS withdraws (
|
|
key INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
usr TEXT,
|
|
wal TEXT,
|
|
walnme TEXT,
|
|
adm INTEGER,
|
|
uni TEXT,
|
|
tit TEXT,
|
|
maxamt INTEGER,
|
|
minamt INTEGER,
|
|
spent INTEGER,
|
|
inc INTEGER,
|
|
tme INTEGER,
|
|
uniq INTEGER DEFAULT 0,
|
|
withdrawals TEXT,
|
|
tmestmp INTEGER,
|
|
rand TEXT
|
|
);
|