Skip to content

Commit

Permalink
Make github token column nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
JackNoordhuis committed Mar 23, 2019
1 parent 5b8f451 commit 30ae1bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function up()
$table->string('email')->unique();
$table->unsignedBigInteger('github_id')->index()->unique();
$table->string('github_nick');
$table->string('github_token');
$table->string('github_token')->nullable();
$table->string('installation_type')->nullable(); //all repositories or selected
$table->timestamps();
});
Expand Down

0 comments on commit 30ae1bb

Please sign in to comment.