about summary refs log tree commit diff stats
path: root/db/migrate/20241207200746_add_like_fields_to_vote.rb
blob: eae28160e194e72a74d47a00fffdd8219b0a2100 (plain) (blame)
1
2
3
4
5
6
7
8
class AddLikeFieldsToVote < ActiveRecord::Migration[7.1]
  def change
    change_table :votes do |t|
      t.string :liker_url
      t.string :liker_name
    end
  end
end