10 lines
184 B
SQL
10 lines
184 B
SQL
-- 0004_shares.sql
|
|
CREATE TABLE IF NOT EXISTS shares (
|
|
id TEXT PRIMARY KEY,
|
|
name TEXT,
|
|
path TEXT,
|
|
type TEXT,
|
|
options TEXT,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|