ready to get rid of me

This commit is contained in:
2018-11-05 10:52:22 -06:00
parent 848a2b4280
commit e471fa5053
2 changed files with 2 additions and 2 deletions

View File

@@ -30,6 +30,6 @@ class CreateWikiUsers extends Migration
*/
public function down()
{
Schemma::dropIfExists('wiki_user');
Schema::dropIfExists('wiki_user');
}
}

View File

@@ -15,7 +15,7 @@ class CreateUserEsiScopes extends Migration
{
Schema::create('UserEsiScopes', function(Blueprint $table) {
$table->integer('id')->increments();
$table->integer('character_id');
$table->foreign('character_id')->integer('character_id');
$table->string('scope');
$table->timestamps();
});