Files
turbovault-app/db/migrate/20260328200256_add_igdb_matching_to_games.rb
2026-03-28 19:24:29 -04:00

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