polaris/migrations/201706272327_mount_points_table/up.sql

7 lines
123 B
MySQL
Raw Normal View History

CREATE TABLE mount_points (
id INTEGER PRIMARY KEY NOT NULL,
source TEXT NOT NULL,
name TEXT NOT NULL,
UNIQUE(name)
);