increments('id'); $table->bigInteger('asset_id')->nullable(); $table->string('type', 100)->nullable(); $table->string('priority', 100)->nullable(); $table->string('location', 100)->nullable(); $table->string('manufacture', 100)->nullable(); $table->string('make', 100)->nullable(); $table->string('model', 100)->nullable(); $table->string('hp', 100)->nullable(); $table->string('serial_no', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('engines'); } }