about summary refs log tree commit diff
path: root/db/migrate/20190304152020_add_uri_to_poll_votes.rb
blob: f6b81f1ba33a2535546f136da9b080af053c77f2 (plain) (blame)
1
2
3
4
5
class AddUriToPollVotes < ActiveRecord::Migration[5.2]
  def change
    add_column :poll_votes, :uri, :string
  end
end