1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-05-05 02:28:16 +03:00

Changed minion_migrations table to use utf-8 rather than latin1

This commit is contained in:
Michał Matyas 2011-09-12 23:17:51 +02:00
parent c1c96ffde3
commit 2431f23c06

View file

@ -5,4 +5,4 @@ CREATE TABLE `minion_migrations` (
`applied` tinyint(1) DEFAULT '0',
PRIMARY KEY (`timestamp`,`group`),
UNIQUE KEY `MIGRATION_ID` (`timestamp`,`description`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
) ENGINE=MyISAM DEFAULT CHARSET=utf8;