rave/migrations/0001_create-user.sql

9 lines
No EOL
279 B
SQL

-- Add migration script here
CREATE TABLE users (
id BIGSERIAL NOT NULL PRIMARY KEY,
name TEXT NOT NULL UNIQUE,
password TEXT NOT NULL,
is_admin BOOLEAN NOT NULL DEFAULT FALSE
);
INSERT INTO users (id, name, password, is_admin)
VALUES (0, 'admin', 'admin', TRUE);