# File lib/larch/db/migrate/002_add_timestamps.rb, line 9
  def up
    alter_table :accounts do
      add_column :created_at, :integer
      add_column :updated_at, :integer
    end
  end