socialforge/db/migrate/20170310053903_create_games.rb

14 lines
253 B
Ruby

class CreateGames < ActiveRecord::Migration
def change
create_table :games do |t|
t.integer :myshixun_id
t.integer :user_id
t.string :subject
t.text :description
t.integer :stage
t.timestamps
end
end
end