diff --git a/core/trunk/sql/150.sql b/core/trunk/sql/150.sql index 41afabb7ae11504de752d180a1161cb38f18cc97..a64b2b2f3d2f313daf554ee1fb37c3c0f6f02c7a 100644 --- a/core/trunk/sql/150.sql +++ b/core/trunk/sql/150.sql @@ -246,6 +246,9 @@ ALTER TABLE listinstance ADD process_date timestamp without time zone; ALTER TABLE listmodels DROP COLUMN IF EXISTS title; ALTER TABLE listmodels ADD COLUMN title varchar(255); +ALTER TABLE sendmail DROP COLUMN IF EXISTS sender_email; +ALTER TABLE sendmail ADD COLUMN sender_email varchar(255); + -- ALTER TABLE listmodels DROP COLUMN IF EXISTS description; -- ALTER TABLE listmodels ADD COLUMN description varchar(255); diff --git a/core/trunk/sql/structure.sql b/core/trunk/sql/structure.sql index 8169cc00561aced39fbe746165b7accbe010a1da..85d7b894b22f74983e89e954a1f12476320f342a 100644 --- a/core/trunk/sql/structure.sql +++ b/core/trunk/sql/structure.sql @@ -3420,6 +3420,7 @@ CREATE TABLE sendmail email_status character varying(1) NOT NULL DEFAULT 'D', creation_date timestamp without time zone NOT NULL, send_date timestamp without time zone DEFAULT NULL, + sender_email character varying(255) DEFAULT NULL, CONSTRAINT sendmail_pkey PRIMARY KEY (email_id ) );