aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/schema2.rb
blob: 8527f7ba8f0056037dfdf0cb2b85b8eca2a9ce10 (plain) (blame)
1
2
3
4
5
6
ActiveRecord::Schema.define do

  Course.connection.create_table :courses, :force => true do |t|
    t.column :name, :string, :null => false
  end
end