class ActiveRecord::ConnectionAdapters::Table

def timestamps

t.timestamps
===== Example
Adds timestamps (created_at and updated_at) columns to the table. See SchemaStatements#add_timestamps
def timestamps
  @base.add_timestamps(@table_name)
end