increments('id'); $table->string('session_id',64)->index(); $table->integer('user_id')->unsigned()->nullable(); $table->morphs('supportable'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('supports'); } }