Skip to content

Commit

Permalink
Merge pull request #26 from jkazimir/master
Browse files Browse the repository at this point in the history
Fix foreign key name for oauth_client_metadata rollback
  • Loading branch information
Luca Degasperi committed Dec 5, 2013
2 parents f2ef8b2 + 30808db commit 92691a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function up()
public function down()
{
Schema::table('oauth_client_metadata', function ($table) {
$table->dropForeign('oauth_grant_scopes_client_id_foreign');
$table->dropForeign('oauth_client_metadata_client_id_foreign');
});
Schema::drop('oauth_client_metadata');
}
Expand Down

0 comments on commit 92691a0

Please sign in to comment.