aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-20 14:47:27 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-02-20 14:47:27 -0200
commitbb9d20cf3434e20ac6f275e3ad29be42ebec207f (patch)
treef1ca7e3bf8dcc817a0ea9cda31e11f3e6a402953 /activerecord/lib/active_record/connection_adapters/postgresql
parentf3186093d816675344c4f93c82c96fe8e94caafa (diff)
parentcddc298deaf58a51dfa1938fba7b64052594bbe7 (diff)
downloadrails-bb9d20cf3434e20ac6f275e3ad29be42ebec207f.tar.gz
rails-bb9d20cf3434e20ac6f275e3ad29be42ebec207f.tar.bz2
rails-bb9d20cf3434e20ac6f275e3ad29be42ebec207f.zip
Merge pull request #18914 from kamipo/format_time_according_to_precision
Format the time string according to the precision of the time column
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/postgresql')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
index 76f568ac03..75b9d079bd 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
@@ -533,12 +533,6 @@ module ActiveRecord
when 5..8; 'bigint'
else raise(ActiveRecordError, "No integer type has byte size #{limit}. Use a numeric with precision 0 instead.")
end
- when 'datetime'
- case precision
- when nil; super(type, limit, precision, scale)
- when 0..6; "timestamp(#{precision})"
- else raise(ActiveRecordError, "No timestamp type has precision of #{precision}. The allowed range of precision is from 0 to 6")
- end
else
super(type, limit, precision, scale)
end