tinyInteger('company_id')->unsigned()->autoIncrement(); $table->string('title')->nullable(); $table->string('alias')->nullable(); $table->unsignedBigInteger('company_type_id')->nullable(); $table->integer('status')->nullable(); $table->mediumText('description')->nullable(); $table->mediumText('remarks')->nullable(); $table->unsignedBigInteger('createdBy')->nullable(); $table->unsignedBigInteger('updatedBy')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tbl_companies'); } };