mirror of
https://github.com/agersant/polaris
synced 2024-12-13 06:42:55 +00:00
6 lines
123 B
SQL
6 lines
123 B
SQL
CREATE TABLE mount_points (
|
|
id INTEGER PRIMARY KEY NOT NULL,
|
|
source TEXT NOT NULL,
|
|
name TEXT NOT NULL,
|
|
UNIQUE(name)
|
|
);
|