mirror of
https://github.com/flarum/framework.git
synced 2025-02-21 00:31:41 +08:00
fixed another foreign key drop with incorrect name
This commit is contained in:
parent
e1a282e0e1
commit
be266a73cd
@ -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