Basic

CREATE TABLE users (
    email VARCHAR(128) NOT NULL,
    password text NOT NULL,
    comment TEXT,
    PRIMARY KEY (email)
);