18F/identity-idp

View on GitHub
db/primary_migrate/20210830171646_add_timestamps_to_throttles.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddTimestampsToThrottles < ActiveRecord::Migration[6.1]
  def change
    add_column :throttles, :created_at, :timestamp
    add_column :throttles, :updated_at, :timestamp
  end
end