id(); $table->jsonb('title'); $table->integer('position')->default(1); $table->unsignedBigInteger('category_id')->nullable(); $table->boolean('published')->default(false); $table->timestamps(); $table->foreign('category_id')->references('id')->on('categories')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('compilation'); } }