noise-server/sqlite/users.sql

10 lines
225 B
MySQL
Raw Normal View History

2021-06-07 19:16:47 +02:00
-- users definition
CREATE TABLE users (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
user_name TEXT NOT NULL,
display_name TEXT,
activated INTEGER DEFAULT 0 NOT NULL,
created INTEGER NOT NULL,
last_online INTEGER
);