instiki/vendor/rails/activerecord/test/schema/schema2.rb

7 lines
151 B
Ruby
Raw Normal View History

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