OAuth metadata endpoints.
This commit is contained in:
parent
e5a947e973
commit
b2f8347526
4 changed files with 99 additions and 2 deletions
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
use Index\Db\DbConnection;
|
||||
use Index\Db\Migration\DbMigration;
|
||||
|
||||
final class AddIndexOnRestrictedFieldForScopes_20250226_173829 implements DbMigration {
|
||||
public function migrate(DbConnection $conn): void {
|
||||
$conn->execute(<<<SQL
|
||||
ALTER TABLE msz_scopes
|
||||
ADD INDEX scopes_restricted_index (scope_restricted);
|
||||
SQL);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue