Skip to content

Commit

Permalink
Merge pull request #8 from doctorlard/fix-postgresql
Browse files Browse the repository at this point in the history
Fixed issue: Error in PostgreSQL DB create script.
  • Loading branch information
c-schmitz committed Jun 5, 2012
2 parents 36a397a + 799f44f commit edf7e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/install/create-postgres.sql
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ CREATE TABLE prefix_participants (
CREATE TABLE prefix_participant_attribute (
"participant_id" character varying( 50 ) NOT NULL,
"attribute_id" integer NOT NULL,
"value" value character varying(50) NOT NULL,
"value" character varying(50) NOT NULL,
CONSTRAINT prefix_participant_attribut_pkey PRIMARY KEY (participant_id,attribute_id)
);

Expand Down

0 comments on commit edf7e73

Please sign in to comment.