mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 15:49:39 +02:00
7 lines
210 B
Ruby
7 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
|