Skip to content

Commit

Permalink
Merge branch 'master' into 192_dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TMSWhite committed Jun 5, 2012
2 parents 3cab4c4 + cc83ee5 commit 6b093ad
Show file tree
Hide file tree
Showing 3 changed files with 250 additions and 163 deletions.
4 changes: 2 additions & 2 deletions admin/install/create-postgres.sql
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ CREATE TABLE prefix_surveys (
startdate timestamp,
expires timestamp,
adminemail character varying(320) NOT NULL,
anonymized character(1),
anonymized character(1) DEFAULT 'N' NOT NULL,
faxto character varying(20),
format character(1),
savetimings character(1) DEFAULT 'N'::bpchar,
Expand Down 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 6b093ad

Please sign in to comment.