Files
grecia/db/migrate/20220915154808_remove_token_from_poll_voter.rb
Senén Rodero Rodríguez 64676be246 Remove token column from poll_voters table
As it is no longer used as originally pretended [1][2].

[1] Check consul/consul pull request 1994
[2] Check consul/consul pull request 3539
2022-09-22 10:34:07 +02:00

6 lines
133 B
Ruby

class RemoveTokenFromPollVoter < ActiveRecord::Migration[6.0]
def change
remove_column :poll_voters, :token, :string
end
end