increments('pl_id'); $table->integer('admin_id'); $table->text('password'); $table->string('generated_password',64)->nullable(); $table->boolean('is_generated'); $table->timestamp('created_dt'); $table->integer('created_by')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('password_logs'); } }