mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-23 14:40:47 +01:00
7 lines
192 B
SQL
7 lines
192 B
SQL
/* create your extensions table and the variables needed here */
|
|
CREATE TABLE IF NOT EXISTS example (
|
|
key INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
usr TEXT,
|
|
wal TEXT,
|
|
walnme TEXT
|
|
);
|