Skip to content

Commit

Permalink
Changed the field concatenation for the name composite column
Browse files Browse the repository at this point in the history
  • Loading branch information
camba1 committed May 29, 2020
1 parent 0191232 commit a0fbe36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgres/postgresInit/userSchema_sql.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ CREATE TABLE "public"."appuser" (
validthru timestamp NOT NULL,
active boolean DEFAULT false,
pwd varchar(50) NOT NULL,
name varchar(200) GENERATED ALWAYS AS (firstname || lastname) STORED,
name varchar(200) GENERATED ALWAYS AS (firstname || ' ' || lastname) STORED,
PRIMARY KEY (id)
);

Expand Down

0 comments on commit a0fbe36

Please sign in to comment.