mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
only use now() on pg!
This commit is contained in:
parent
6a28c512e3
commit
c2f3c9bf56
1 changed files with 3 additions and 1 deletions
|
@ -474,8 +474,10 @@ if ActiveRecord::Base.connection.supports_migrations?
|
|||
Person.connection.execute "insert into people (id, wealth, created_at, updated_at) values (people_seq.nextval, 12345678901234567890.0123456789, 0, 0)"
|
||||
elsif current_adapter?(:OpenBaseAdapter) || (current_adapter?(:MysqlAdapter) && Mysql.client_version < 50003) #before mysql 5.0.3 decimals stored as strings
|
||||
Person.connection.execute "insert into people (wealth, created_at, updated_at) values ('12345678901234567890.0123456789', 0, 0)"
|
||||
else
|
||||
elsif current_adapter?(:PostgreSQLAdapter)
|
||||
Person.connection.execute "insert into people (wealth, created_at, updated_at) values (12345678901234567890.0123456789, now(), now())"
|
||||
else
|
||||
Person.connection.execute "insert into people (wealth, created_at, updated_at) values (12345678901234567890.0123456789, 0, 0)"
|
||||
end
|
||||
|
||||
# SELECT
|
||||
|
|
Loading…
Reference in a new issue