mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-05 02:58:54 +00:00
10 lines
222 B
SQL
10 lines
222 B
SQL
CREATE TABLE IF NOT EXISTS users (
|
|
user_id int NOT NULL AUTO_INCREMENT,
|
|
username varchar(255) NOT NULL,
|
|
password varchar(255) NOT NULL,
|
|
root_path varchar(512) NOT NULL,
|
|
admin boolean,
|
|
|
|
PRIMARY KEY (user_id)
|
|
);
|