increments('id'); $table->string('name', 255)->nullable(); $table->string('designation', 255)->nullable(); $table->text('description')->nullable(); $table->string('image', 50)->nullable(); $table->integer('category')->nullable(); $table->integer('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('team_members'); } }