increments('id'); $table->integer('user_id')->unsigned(); $table->integer('sender_id')->unsigned()->nullable(); $table->string('type'); $table->binary('data')->nullable(); $table->dateTime('time'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('activity'); } }