WWWShop/migrations/0000001_create_users_table....

6 lines
127 B
MySQL
Raw Permalink Normal View History

CREATE TABLE IF NOT EXISTS users (
id serial PRIMARY KEY,
username text UNIQUE NOT NULL,
password text NOT NULL
);