1
resposta

Como faço para informar a tablespace em uma migration de criação de tabela

Estou tentando executar uma migration para o Oracle e preciso informar o nome da tablespace no momento de criar a tabela, alguém sabe como faço? Segue abaixo o código:

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateFailedJobsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('failed_jobs', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->text('connection');
            $table->text('queue');
            $table->longText('payload');
            $table->longText('exception');
            $table->timestamp('failed_at')->useCurrent();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('failed_jobs');
    }
}
1 resposta

Rafael, boa tarde!

O construtor de Schema não suporta tablespaces diretamente, mas você está sempre livre para usar comandos SQL brutos.

\DB::statement ('ALTER TABLE <NOME DA TABELA a ser movido> MOVE TABLESPACE <destino TABLESPACENAME>');

Espero ter ajudado e bons estudos!