Index: openacs-4/packages/acs-subsite/sql/postgresql/email-image.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-subsite/sql/postgresql/email-image.sql,v diff -u -r1.3 -r1.4 --- openacs-4/packages/acs-subsite/sql/postgresql/email-image.sql 30 Mar 2013 18:04:20 -0000 1.3 +++ openacs-4/packages/acs-subsite/sql/postgresql/email-image.sql 27 Oct 2014 16:39:45 -0000 1.4 @@ -4,10 +4,9 @@ create table email_images ( - user_id integer constraint email_images_user_id_fk - references users - constraint email_images_user_id_pk - primary key + user_id integer + constraint email_images_user_id_fk references users + constraint email_images_user_id_pk primary key ); CREATE OR REPLACE FUNCTION inline_0 () RETURNS integer AS $$ @@ -39,3 +38,5 @@ select inline_0 (); drop function inline_0 (); + +