Active column in sql script

This commit is contained in:
Marcin Łojewski
2018-06-13 20:09:07 +02:00
parent e95241b659
commit 2757d1aea6

View File

@@ -113,6 +113,7 @@ CREATE TABLE sql_users
email TEXT NULL,
home TEXT NULL,
password TEXT NOT NULL,
active TINYINT(1) NOT NULL DEFAULT '1',
can_change_avatar BOOLEAN NOT NULL DEFAULT FALSE,
CONSTRAINT users_username_uindex UNIQUE (username)
);