Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gbeauvoir committed Feb 3, 2014
1 parent 1d6d706 commit 7b0cd99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/var/db/db-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -361,12 +361,12 @@ CREATE TABLE IF NOT EXISTS `core_mailer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`subject` varchar(255) NOT NULL,
`template` varchar(255) NOT NULL,
`from` varchar(150) NOT NULL,
`to` text NOT NULL,
`address_from` varchar(150) NOT NULL,
`address_to` text NOT NULL,
`html` text NOT NULL,
`create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

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

Expand Down

0 comments on commit 7b0cd99

Please sign in to comment.