mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
9 lines
211 B
SQL
9 lines
211 B
SQL
CREATE TABLE torrent_config (
|
|
enabled BOOLEAN DEFAULT false,
|
|
port UNSIGNED INT,
|
|
data_dir VARCHAR NOT NULL,
|
|
torrent_dir VARCHAR NOT NULL,
|
|
synthetic_id VARCHAR DEFAULT 'id' PRIMARY KEY
|
|
) WITHOUT ROWID;
|
|
|