aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/timestamp.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-05-19 18:56:00 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-05-19 18:56:00 -0300
commit03035d69e14032a589e9653e3145237b8a9a09be (patch)
treea20b809cd5b17c706709a51594c0ab1480503c6c /activerecord/lib/active_record/connection_adapters/type/timestamp.rb
parent09cc922ed31bf699b26fafe4822fc7048b821825 (diff)
parentd0f8c46e1962b28d77209f367f12c2d2c77f4b12 (diff)
downloadrails-03035d69e14032a589e9653e3145237b8a9a09be.tar.gz
rails-03035d69e14032a589e9653e3145237b8a9a09be.tar.bz2
rails-03035d69e14032a589e9653e3145237b8a9a09be.zip
Merge pull request #15184 from sgrif/sg-remove-timestamp-type
Remove :timestamp column type
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/type/timestamp.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/type/timestamp.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/type/timestamp.rb b/activerecord/lib/active_record/connection_adapters/type/timestamp.rb
deleted file mode 100644
index 92bf0a1954..0000000000
--- a/activerecord/lib/active_record/connection_adapters/type/timestamp.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-module ActiveRecord
- module ConnectionAdapters
- module Type
- class Timestamp < Value # :nodoc:
- def type
- :timestamp
- end
- end
- end
- end
-end