aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2014-03-12 09:06:12 -0400
committerArthur Neves <arthurnn@gmail.com>2014-03-12 09:06:12 -0400
commit5a934e6787337e51d8174669ea0ca6e0c9ea8081 (patch)
tree1f68063e92721c15ff346ebb208aafcd918ed656 /activerecord/test/schema
parentdf5a38fc6aeb8dfaa816fcbe0efb3fe4de169833 (diff)
downloadrails-5a934e6787337e51d8174669ea0ca6e0c9ea8081.tar.gz
rails-5a934e6787337e51d8174669ea0ca6e0c9ea8081.tar.bz2
rails-5a934e6787337e51d8174669ea0ca6e0c9ea8081.zip
Test microsecond on mysql 5.6
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/schema.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index 5f2d6acbcb..b44e72a67c 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -674,7 +674,11 @@ ActiveRecord::Schema.define do
t.string :title
t.string :author_name
t.string :author_email_address
- t.datetime :written_on
+ if mysql_56?
+ t.datetime :written_on, limit: 6
+ else
+ t.datetime :written_on
+ end
t.time :bonus_time
t.date :last_read
# use VARCHAR2(4000) instead of CLOB datatype as CLOB data type has many limitations in