increments('id'); $table->string('name', 200)->nullable(); $table->string('email', 100)->nullable(); $table->text('slug')->nullable(); $table->integer('description')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('portals'); } }