mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 22:12:53 +00:00
10 lines
307 B
Ruby
10 lines
307 B
Ruby
class AddIgdbMatchingToGames < ActiveRecord::Migration[8.1]
|
|
def change
|
|
add_column :games, :igdb_matched_at, :datetime
|
|
add_column :games, :igdb_match_status, :string
|
|
add_column :games, :igdb_match_confidence, :decimal, precision: 5, scale: 2
|
|
|
|
add_index :games, :igdb_match_status
|
|
end
|
|
end
|