dbfdg bigIncrements('id'); $table->string('branch'); $table->string('firstname'); $table->string('lastname'); $table->string('contact'); $table->string('email'); $table->text('address')->nullable(); $table->text('expertise')->nullable(); $table->integer('created_by'); $table->timestamps(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('trainers'); } }