Skip to content
Snippets Groups Projects
Commit 9a87e79d authored by Damien's avatar Damien
Browse files

FEAT #3223 create email_signatures table

parent 3161e68e
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,9 @@ if(! defined('LISTMODELS_CONTENT_TABLE')) {
if (! defined('USERS_TABLE')) {
define('USERS_TABLE', 'users');
}
if (! defined('EMAIL_SIGNATURES_TABLE')) {
define('EMAIL_SIGNATURES_TABLE', 'email_signatures');
}
if (! defined('USER_BASKETS_SECONDARY_TABLE')) {
define('USER_BASKETS_SECONDARY_TABLE', 'user_baskets_secondary');
}
This diff is collapsed.
......@@ -914,6 +914,24 @@ CREATE TABLE groupbasket_redirect
)
WITH (OIDS=FALSE);
CREATE SEQUENCE email_signatures_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 7
CACHE 1;
CREATE TABLE email_signatures
(
id bigint NOT NULL DEFAULT nextval('email_signatures_id_seq'::regclass),
user_id character varying(255) NOT NULL,
html_body text NOT NULL,
title character varying NOT NULL,
CONSTRAINT email_signatures_pkey PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
-- modules/folder/sql/structure/folder.postgresql.sql
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment