Adding crypto package to hash user's password on our User Model. Create our User Model with some helpers. Creating migration for our users table.
Some checks failed
Deploy Greenlight API / deploy (push) Failing after 49s
Some checks failed
Deploy Greenlight API / deploy (push) Failing after 49s
This commit is contained in:
9
migrations/000004_create_users_table.up.sql
Normal file
9
migrations/000004_create_users_table.up.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id bigserial PRIMARY KEY,
|
||||
created_at timestamp(0) with time zone NOT NULL DEFAULT NOW(),
|
||||
name text NOT NULL,
|
||||
email citext UNIQUE NOT NULL,
|
||||
password_hash bytea NOT NULL,
|
||||
activated bool NOT NULL,
|
||||
version integer NOT NULL DEFAULT 1
|
||||
);
|
||||
Reference in New Issue
Block a user