como/como_infrastructure/migrations/20220808220223_initial_migration.sql
2022-10-03 23:00:31 +02:00

9 lines
237 B
SQL

-- Add migration script here
CREATE TABLE IF NOT EXISTS users (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
username varchar not null,
password_hash varchar not null
);
CREATE unique index users_username_idx on users(username)