feat(callback): add callback

This commit is contained in:
2026-02-03 10:17:11 +08:00
parent 27a6791591
commit 202b5eaad5
27 changed files with 1806 additions and 124 deletions

View File

@@ -0,0 +1,9 @@
BEGIN;
DELETE FROM permissions
WHERE code IN ('iam:client:read', 'iam:client:write');
DROP TABLE IF EXISTS oauth_clients;
COMMIT;

View File

@@ -0,0 +1,7 @@
BEGIN;
ALTER TABLE oauth_clients
DROP COLUMN IF EXISTS redirect_uris;
COMMIT;