class ActiveRecord::ConnectionAdapters::Table

def remove_timestamps

t.remove_timestamps
===== Example
Removes the timestamp columns (created_at and updated_at) from the table.
def remove_timestamps
  @base.remove_timestamps(@table_name)
end