1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-03 05:29:07 +00:00
mastodon/db/migrate/20190304152020_add_uri_to_poll_votes.rb

8 lines
151 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddUriToPollVotes < ActiveRecord::Migration[5.2]
def change
add_column :poll_votes, :uri, :string
end
end