Files
rails/activerecord/test/schema/sqlserver_specific_schema.rb
Frederick Cheung a4fc93c3a9 Use schema.rb for all databases
Move adapter specific schema into their own files

Signed-off-by: Michael Koziarski <michael@koziarski.com>
2008-04-22 13:55:13 +12:00

5 lines
136 B
Ruby

ActiveRecord::Schema.define do
create_table :table_with_real_columns, :force => true do |t|
t.column :real_number, :real
end
end