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,12 @@
class CreateGameGenres < ActiveRecord::Migration[8.1]
def change
create_table :game_genres do |t|
t.references :game, null: false, foreign_key: true, index: true
t.references :genre, null: false, foreign_key: true, index: true
t.timestamps
end
add_index :game_genres, [ :game_id, :genre_id ], unique: true
end
end