6 lines
82 B
SQL
6 lines
82 B
SQL
CREATE TABLE recordings (
|
|
id INTEGER PRIMARY KEY,
|
|
name text NOT NULL
|
|
);
|
|
|