mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
* Change email address * Email confirmation * Email change test * Lint * Schema reset * Set test email sender * Select specific user fixture * Refactor/cleanup * Remove unused email_confirmation_token * Current user would never be true * Fix translation test failures
6 lines
210 B
Ruby
6 lines
210 B
Ruby
class RemoveEmailConfirmationTokenFromUsers < ActiveRecord::Migration[7.2]
|
|
def change
|
|
remove_index :users, :email_confirmation_token
|
|
remove_column :users, :email_confirmation_token, :string
|
|
end
|
|
end
|