blob: d65b118bc9a1ee8a60b1b025a3f529a6d33af1d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class CreateGames < ActiveRecord::Migration[7.1]
def change
create_table :games do |t|
t.string :title
t.string :titleSlug
t.string :description
t.string :github_link
t.string :img_rendering
t.integer :status, default: 0
t.integer :order, default: 0
t.timestamps
end
add_reference :games, :user, null: false, foreign_key: true
end
end
|