Closed marcusmoore closed 8 years ago
Hello,
I noticed that there was a missing semi-colon on indexes and uniques:
// from users table $table->unique('email', 'users_email_unique') // from password resets table $table->index('email', 'password_resets_email_index') $table->index('token', 'password_resets_token_index')
This should fix it.
D'oh! Thanks!
Hello,
I noticed that there was a missing semi-colon on indexes and uniques:
This should fix it.