updated esi tokens migration

This commit is contained in:
2018-11-10 16:15:01 -06:00
parent 41caf80290
commit 6f3ea91bbb

View File

@@ -15,7 +15,7 @@ class CreateEsiTokens extends Migration
{
if(!Schema::hasTable('EsiTokens')) {
Schema::create('EsiTokens', function(Blueprint $table) {
$table->integer('id')->increments();
$table->increments('id');
$table->integer('character_id')->unique();
$table->string('access_token');
$table->string('refresh_token');