Skip to content

Commit

Permalink
Merge pull request jruby#40 from atambo/master
Browse files Browse the repository at this point in the history
Sqlite3 Float Data Type
  • Loading branch information
nicksieger committed May 9, 2011
2 parents d923d8f + de7d0b6 commit 1490783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/arjdbc/sqlite3/adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def modify_types(tp)
tp[:primary_key] = "integer primary key autoincrement not null"
tp[:string] = { :name => "varchar", :limit => 255 }
tp[:text] = { :name => "text" }
tp[:float] = { :name => "decimal" }
tp[:float] = { :name => "float" }
tp[:decimal] = { :name => "decimal" }
tp[:datetime] = { :name => "datetime" }
tp[:timestamp] = { :name => "datetime" }
Expand Down

0 comments on commit 1490783

Please sign in to comment.