engine = 'InnoDB';
$table->integer('id', true);
$table->integer('user_id')->index('role_user_user_id');
$table->integer('role_id')->index('role_user_role_id');
$table->timestamps(6);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('role_user');
}
}