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,13 @@
class CreateCollectionGames < ActiveRecord::Migration[8.1]
def change
create_table :collection_games do |t|
t.references :collection, null: false, foreign_key: true, index: true
t.references :game, null: false, foreign_key: true, index: true
t.integer :position
t.timestamps
end
add_index :collection_games, [ :collection_id, :game_id ], unique: true
end
end