id(); $table->jsonb('name'); $table->string('slug'); $table->jsonb('body'); $table->jsonb('descriptions')->default('{"ru":"","uz":""}'); $table->jsonb('keywords')->default('{"ru":"","uz":""}'); $table->unsignedInteger('type')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pages'); } }