CMSgov/dpc-app

View on GitHub
dpc-web/db/migrate/20200909131201_create_the_resources.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateTheResources < ActiveRecord::Migration[6.0]
  def change
    create_table :the_resources do |t|
      t.datetime :password_changed_at
    end
    add_index :the_resources, :password_changed_at
  end
end