mirror of
https://github.com/glitch-soc/mastodon
synced 2025-05-08 09:34:51 +00:00
5 lines
168 B
Ruby
5 lines
168 B
Ruby
class RemoveVerifyTokenFromAccounts < ActiveRecord::Migration[5.0]
|
|
def change
|
|
remove_column :accounts, :verify_token, :string, null: false, default: ''
|
|
end
|
|
end
|