Skip to content
Snippets Groups Projects
Unverified Commit 04bcb761 authored by Kevin Lyda's avatar Kevin Lyda
Browse files

Cleanup db in prep for storage module

parent e4a46cec
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ CREATE TABLE users ( ...@@ -3,6 +3,7 @@ CREATE TABLE users (
name VARCHAR(53) NOT NULL, name VARCHAR(53) NOT NULL,
admin INT DEFAULT 0 NOT NULL, admin INT DEFAULT 0 NOT NULL,
moderator INT DEFAULT 0 NOT NULL, moderator INT DEFAULT 0 NOT NULL,
alert INT NOT NULL DEFAULT 0, --- 0=no, 1=brief, 2=readnew
disabled INT DEFAULT 0 NOT NULL, disabled INT DEFAULT 0 NOT NULL,
last_login TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, last_login TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
create_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, create_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment