diff --git a/migrations/Version20170407084225CreateUsersTable.php b/migrations/Version20170407084225CreateUsersTable.php index 7cc3fa6..87a9f0a 100644 --- a/migrations/Version20170407084225CreateUsersTable.php +++ b/migrations/Version20170407084225CreateUsersTable.php @@ -16,6 +16,7 @@ public function up(): void $table->addString('email', ['unique' => true]); $table->addString('description', ['nullable' => true]); $table->addString('password'); + $table->addString('remember_token', ['nullable' => true, 'size' => 100]); $table->addTimestamps(); $table->withEngine('InnoDB'); });