1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-28 23:09:12 +09:00
whippy-edition/db/migrate/20190304152020_add_uri_to_poll_votes.rb

6 lines
120 B
Ruby
Raw Normal View History

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