increments('id')->unsigned(); $table->integer('user_id')->unsigned(); $table->morphs('source'); $table->string('subject',128)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('collections'); } }