Skip to content

Commit

Permalink
feat: added default on the init data
Browse files Browse the repository at this point in the history
  • Loading branch information
joshghent committed Sep 23, 2022
1 parent 59b3ee9 commit 906a7d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/db/postgres/tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ CREATE TABLE IF NOT EXISTS psa_pin_request
deleted_at TIMESTAMP WITH TIME ZONE,
inserted_at TIMESTAMP WITH TIME ZONE DEFAULT timezone('utc'::text, now()) NOT NULL,
updated_at TIMESTAMP WITH TIME ZONE DEFAULT timezone('utc'::text, now()) NOT NULL,
backup_urls TEXT[] NOT NULL DEFAULT []
backup_urls TEXT[] DEFAULT array[]::text[]
);

CREATE INDEX IF NOT EXISTS psa_pin_request_content_cid_idx ON psa_pin_request (content_cid);
Expand Down

0 comments on commit 906a7d5

Please sign in to comment.