class Object

Public Instance Methods

column(name, type, **options) click to toggle source
Calls superclass method
# File lib/ar/timestamptz.rb, line 8
def column(name, type, **options)
  type = :timestamptz if type == :datetime
  super(name, type, **options)
end