increments('id'); $table->string('title', 150)->nullable(); $table->string('designation', 150)->nullable(); $table->longText('image')->nullable(); $table->longText('content')->nullable(); $table->enum('status', [1=>'Active', 0=>'Inactive'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('testimonials'); } }