From 2431f23c0600e3d8c0f6f83a31114d6da2e0d215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Matyas?= Date: Mon, 12 Sep 2011 23:17:51 +0200 Subject: [PATCH] Changed minion_migrations table to use utf-8 rather than latin1 --- minion_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minion_schema.sql b/minion_schema.sql index 289d43c..f4b42d8 100644 --- a/minion_schema.sql +++ b/minion_schema.sql @@ -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;