increments('id'); $table->string('name', 200)->nullable(); $table->string('designation', 200)->nullable(); $table->string('image', 400)->nullable(); $table->text('twitter')->nullable(); $table->text('facebook')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('team_members'); } }