class CreateGoGamificationTasks < ActiveRecord::Migration[5.1] def change create_table :go_gamification_tasks do |t| t.references :taskable, polymorphic: true, index: true t.integer :points t.timestamps end end end