Upgraded Rails and RSpec
[monkeycharger.git] / vendor / rails / activerecord / test / fixtures / db_definitions / schema2.rb
blob863237d27152a2e4dca0436fde5be2eabdce6586
1 ActiveRecord::Schema.define do
3   # adapter name is checked because we are under a transition of
4   # moving the sql files under activerecord/test/fixtures/db_definitions
5   # to this file, schema.rb.
6   if adapter_name == "MySQL"
7     Course.connection.create_table :courses, :force => true do |t|
8       t.column :name, :string, :null => false
9     end
10   end
11 end