Sha256: 61ebfc1cd2cb33ce4ead4801cfe86cdcec995349a9e1bbeb45a9b91aaabf89c7
Contents?: true
Size: 383 Bytes
Versions: 17
Compression:
Stored size: 383 Bytes
Contents
# frozen_string_literal: true # This migration comes from solidus_auth (originally 20120203010234) class AddResetPasswordSentAtToSpreeUsers < SolidusSupport::Migration[4.2] def change Spree::User.reset_column_information unless Spree::User.column_names.include?("reset_password_sent_at") add_column :spree_users, :reset_password_sent_at, :datetime end end end
Version data entries
17 entries across 17 versions & 6 rubygems