Silence deprecation warning in test

Missed a case that only occured for mysql/mysql2
This commit is contained in:
Sean Griffin 2014-05-27 11:12:44 -07:00
parent 52434e9a51
commit 61ef04cec0

@ -12,6 +12,9 @@
require MIGRATIONS_ROOT + "/decimal/1_give_me_big_numbers"
class BigNumber < ActiveRecord::Base
unless current_adapter?(:PostgreSQLAdapter, :SQLite3Adapter)
property :value_of_e, Type::Integer.new
end
property :world_population, Type::Integer.new
property :my_house_population, Type::Integer.new
end