ulid('id')->primary(); $table->string('title')->nullable(); $table->text('description')->nullable(); $table->string('destination')->nullable(); $table->string('type')->nullable(); $table->smallInteger('is_publish')->nullable(); $table->timestamps(); $table->softDeletes(); $table->ulid('created_by')->nullable(); $table->ulid('updated_by')->nullable(); $table->ulid('deleted_by')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('infos'); } };