Moving to github

This commit is contained in:
2026-03-28 19:24:29 -04:00
commit 036fa7ab33
302 changed files with 17838 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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