Skip to content

Commit

Permalink
Add fields in core_mailer table
Browse files Browse the repository at this point in the history
boo_sent
boo_read
  • Loading branch information
gbeauvoir committed Apr 21, 2015
1 parent 66cf8be commit 1846f51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/var/db/db-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,8 @@ CREATE TABLE IF NOT EXISTS `core_mailer` (
`update_date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

ALTER TABLE `core_mailer` ADD `boo_read` TINYINT NOT NULL DEFAULT '0' , ADD `boo_sent` TINYINT NOT NULL DEFAULT '0' ;

-- --------------------------------------------------------

--
Expand Down
1 change: 1 addition & 0 deletions app/var/db/dp-mysql-update.v1.20.14.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `core_mailer` ADD `boo_read` TINYINT NOT NULL DEFAULT '0' , ADD `boo_sent` TINYINT NOT NULL DEFAULT '0' ;

0 comments on commit 1846f51

Please sign in to comment.