Lumen doesn't have the queue:table
command - that's for Laravel. You'll want to create the jobs table migration(s) manually. From the docs:
Schema::create('jobs', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('queue');
$table->longText('payload');
$table->tinyInteger('attempts')->unsigned();
$table->tinyInteger('reserved')->unsigned();
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
$table->index(['queue', 'reserved', 'reserved_at']);
});
Remember to rename the table in the above code to what you want.
Docs for your version: https://lumen.laravel.com/docs/5.2/queues - if you are not used to queues in Lumen, you'll want to read the rest in there as well.