tabletop-companion/db/migrate/20240605132327_add_password...

8 lines
187 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
class AddPasswordResetLastSentAtToUser < ActiveRecord::Migration[7.1]
def change
add_column :users, :password_reset_last_sent_at, :datetime
end
end