Skip to content

Commit

Permalink
Update user_invitations migration
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIII committed Aug 7, 2019
1 parent 6e90ee4 commit eff9422
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function up()
$table->string('code')->index();
$table->string('email');
$table->BigInteger('user_id')->unsigned();
$table->enum('status', ['pending', 'successful','canceled','expired'])->default('pending');
$table->enum('status', ['pending', 'successful', 'canceled', 'expired'])->default('pending');
$table->datetime('valid_till');
$table->timestamps();
});
Expand Down

0 comments on commit eff9422

Please sign in to comment.