increments('id'); $table->string('email', 20)->nullable(); $table->string('password', 20)->nullable(); $table->string('name', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('prs'); } }