mirror of
https://github.com/freescout-helpdesk/freescout.git
synced 2024-11-24 03:12:46 +01:00
Fix sql_require_primary_key issue - closes #818
This commit is contained in:
parent
6e752bba1c
commit
0f4f2674f7
@ -14,6 +14,7 @@ class CreatePasswordResetsTable extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::create('password_resets', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('email', 191)->index();
|
||||
$table->string('token', 255);
|
||||
$table->timestamp('created_at')->nullable();
|
||||
|
Loading…
Reference in New Issue
Block a user