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

Merge pull request #29 from d4rky-pl/fix/database-schema

Changed minion_migrations table to use utf-8 rather than latin1
thanks :)
This commit is contained in:
Lorenzo Pisani 2011-09-12 14:24:35 -07:00
commit 01f49c5676

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;