mirror of
https://github.com/flarum/framework.git
synced 2025-02-21 07:11:56 +08:00
fixed another foreign key drop with incorrect name
This commit is contained in:
parent
9d13aae115
commit
34e7355c58
@ -28,7 +28,7 @@ return [
|
||||
|
||||
'down' => function (Builder $schema) {
|
||||
$schema->table('api_keys', function (Blueprint $table) {
|
||||
$table->dropForeign(['user_id']);
|
||||
$table->dropForeign('api_keys_user_id_foreign');
|
||||
$table->dropColumn('id', 'allowed_ips', 'user_id', 'scopes', 'created_at');
|
||||
});
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user