Files
EvoBGP/migrations/postgres/000029_created_by_user.down.sql
DenozordecandCursor 4d83b8d673
CI / changes (push) Successful in 6s
CI / commitlint (push) Skipped
CI / openapi (push) Successful in 27s
CI / web (push) Successful in 51s
CI / go (push) Successful in 2m19s
CI / bird2 (push) Successful in 13s
CI / release (push) Successful in 4m24s
feat(auth): integrate portal JWT for enhanced authentication and authorization
Added support for portal JWT authentication, enabling single sign-on (SSO) capabilities. Updated the application to handle JWT claims for user permissions and roles, enhancing security and access control. Refactored relevant components and API routes to accommodate the new authentication flow, ensuring a seamless user experience. Updated documentation to reflect the new authentication requirements and configurations.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-18 23:23:52 +07:00

10 lines
457 B
SQL

DROP INDEX IF EXISTS idx_firewall_rule_created_by;
DROP INDEX IF EXISTS idx_firewall_client_created_by;
DROP INDEX IF EXISTS idx_bgp_peer_created_by;
DROP INDEX IF EXISTS idx_module_created_by;
ALTER TABLE firewall_rule DROP COLUMN IF EXISTS created_by_user_id;
ALTER TABLE firewall_client DROP COLUMN IF EXISTS created_by_user_id;
ALTER TABLE bgp_peer DROP COLUMN IF EXISTS created_by_user_id;
ALTER TABLE module DROP COLUMN IF EXISTS created_by_user_id;