CREATE TABLE IF NOT EXISTS user_password ( "user" UUID PRIMARY KEY, password_hash VARCHAR(255) NOT NULL, password_salt VARCHAR(255), is_active BOOLEAN NOT NULL DEFAULT true, created_at TIMESTAMPTZ NOT NULL, updated_at TIMESTAMPTZ NOT NULL );