mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a4fc93c3a9
Move adapter specific schema into their own files Signed-off-by: Michael Koziarski <michael@koziarski.com>
6 lines
151 B
Ruby
6 lines
151 B
Ruby
ActiveRecord::Schema.define do
|
|
|
|
Course.connection.create_table :courses, :force => true do |t|
|
|
t.column :name, :string, :null => false
|
|
end
|
|
end
|