You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have no separate CoC-SQL configuration and default just copypasted from CoC's readme config to setup CoC intself.
I just installed CoC-SQL with CocInstall coc-sql
My SQL migration with the name 0_initial.up.sql
CREATETABLEIF NOT EXISTS users (
id UUID DEFAULT gen_random_uuid() NOT NULL UNIQUE,
name TEXTNOT NULL,
public_key BYTEANOT NULL,
password_hash BYTEANOT NULL,
password_salt BYTEANOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMPNOT NULL
);
I have no separate CoC-SQL configuration and default just copypasted from CoC's readme config to setup CoC intself.
I just installed CoC-SQL with
CocInstall coc-sql
My SQL migration with the name
0_initial.up.sql
The error I'm getting (highlighted near UUID)
Similar thing happens with BYTEA type when I'm removing line with UUID or replacing UUID with TEXT.
The text was updated successfully, but these errors were encountered: