aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/active_schema_mysql_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/active_schema_mysql_test.rb b/activerecord/test/active_schema_mysql_test.rb
index a10970ecbf..b72223526a 100644
--- a/activerecord/test/active_schema_mysql_test.rb
+++ b/activerecord/test/active_schema_mysql_test.rb
@@ -21,7 +21,7 @@ class ActiveSchemaTest < Test::Unit::TestCase
end
def test_add_column_with_limit
- assert_equal "ALTER TABLE `people` ADD key varchar(32)", add_column(:people, :key, :string, :limit => 32)
+ assert_equal "ALTER TABLE people ADD `key` varchar(32)", add_column(:people, :key, :string, :limit => 32)
end
private