6 lines
84 B
SQL
6 lines
84 B
SQL
CREATE TABLE IF NOT EXISTS users (
|
|
userid text,
|
|
password text,
|
|
active boolean
|
|
);
|