Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
adding 6.4.0 sql table
  • Loading branch information
isma91 committed Mar 14, 2016
1 parent 195b75a commit 8c8af37
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
21 changes: 21 additions & 0 deletions dist/php/6.4.0.mysql
@@ -0,0 +1,21 @@
/* SEPARATOR */
CREATE TABLE IF NOT EXISTS `ajxp_mail_queue` (
`id` int(11) PRIMARY KEY NOT NULL AUTO_INCREMENT,
`recipent` varchar(255) NOT NULL,
`url` text NOT NULL,
`date_event` int(11) NOT NULL,
`notification_object` longblob NOT NULL,
`html` int(1) NOT NULL
)CHARACTER SET utf8 COLLATE utf8_unicode_ci;
/* SEPARATOR */
CREATE TABLE IF NOT EXISTS `ajxp_mail_sent` (
`id` int(11) PRIMARY KEY NOT NULL AUTO_INCREMENT,
`recipent` varchar(255) NOT NULL,
`url` text NOT NULL,
`date_event` int(11) NOT NULL,
`notification_object` longblob NOT NULL,
`html` int(1) NOT NULL
)CHARACTER SET utf8 COLLATE utf8_unicode_ci;
/* SEPARATOR */
CREATE TRIGGER `mail_queue_go_to_sent` BEFORE DELETE ON `ajxp_mail_queue`
FOR EACH ROW INSERT INTO ajxp_mail_sent (id,recipent,url,date_event,notification_object,html) VALUES (old.id,old.recipent,old.url,old.date_event,old.notification_object,old.html);
29 changes: 29 additions & 0 deletions dist/php/6.4.0.pgsql
@@ -0,0 +1,29 @@
/* SEPARATOR */
CREATE TABLE IF NOT EXISTS ajxp_mail_queue (
id serial PRIMARY KEY,
recipent varchar(255) NOT NULL,
url text NOT NULL,
date_event integer NOT NULL,
notification_object bytea NOT NULL,
html integer NOT NULL
);
/* SEPARATOR */
CREATE TABLE IF NOT EXISTS ajxp_mail_sent (
id serial PRIMARY KEY,
recipent varchar(255) NOT NULL,
url text NOT NULL,
date_event integer NOT NULL,
notification_object bytea NOT NULL,
html integer NOT NULL
);
/* SEPARATOR */
CREATE FUNCTION ajxp_send_mail() RETURNS trigger AS $ajxp_send_mail$
BEGIN
INSERT INTO ajxp_mail_sent (id,recipent,url,date_event,notification_object,html)
VALUES (OLD.id,OLD.recipent,OLD.url,OLD.date_event,OLD.notification_object,OLD.html);
RETURN OLD;
END;
$ajxp_send_mail$ LANGUAGE plpgsql;
/* SEPARATOR */
CREATE TRIGGER mail_queue_go_to_sent BEFORE DELETE ON ajxp_mail_queue
FOR EACH ROW EXECUTE PROCEDURE ajxp_send_mail();
25 changes: 25 additions & 0 deletions dist/php/6.4.0.sqlite
@@ -0,0 +1,25 @@
/* SEPARATOR */
CREATE TABLE ajxp_mail_queue (
id INTEGER PRIMARY KEY AUTOINCREMENT,
recipent TEXT,
url TEXT,
date_event INT,
notification_object blob,
html INT
);
/* SEPARATOR */
CREATE TABLE ajxp_mail_sent (
id INTEGER PRIMARY KEY AUTOINCREMENT,
recipent TEXT,
url TEXT,
date_event INT,
notification_object blob,
html INT
);
/* SEPARATOR */
CREATE TRIGGER mail_queue_go_to_sent BEFORE DELETE ON ajxp_mail_queue
FOR EACH ROW
BEGIN
INSERT INTO ajxp_mail_sent (id,recipent,url,date_event,notification_object,html)
VALUES (old.id,old.recipent,old.url,old.date_event,old.notification_object,old.html);
END;

0 comments on commit 8c8af37

Please sign in to comment.