16 lines
367 B
Ruby
16 lines
367 B
Ruby
class ModifyGames < ActiveRecord::Migration
|
|
def up
|
|
remove_column :games, :subject
|
|
remove_column :games, :description
|
|
remove_column :games, :stage
|
|
remove_column :games, :ready_knowledge
|
|
remove_column :games, :task_pass
|
|
remove_column :games, :answer
|
|
remove_column :games, :score
|
|
remove_column :games, :path
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|