aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/schema2.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/schema/schema2.rb')
-rw-r--r--activerecord/test/schema/schema2.rb9
1 files changed, 2 insertions, 7 deletions
diff --git a/activerecord/test/schema/schema2.rb b/activerecord/test/schema/schema2.rb
index 863237d271..8527f7ba8f 100644
--- a/activerecord/test/schema/schema2.rb
+++ b/activerecord/test/schema/schema2.rb
@@ -1,11 +1,6 @@
ActiveRecord::Schema.define do
- # adapter name is checked because we are under a transition of
- # moving the sql files under activerecord/test/fixtures/db_definitions
- # to this file, schema.rb.
- if adapter_name == "MySQL"
- Course.connection.create_table :courses, :force => true do |t|
- t.column :name, :string, :null => false
- end
+ Course.connection.create_table :courses, :force => true do |t|
+ t.column :name, :string, :null => false
end
end