increments('id'); $table->string('subtitle', 100)->nullable(); $table->string('title', 100)->nullable(); $table->string('name', 100)->nullable(); $table->string('designation', 55)->nullable(); $table->text('short_description')->nullable(); $table->text('description')->nullable(); $table->string('slug', 60)->nullable(); $table->enum('status', [])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('testimonials'); } }