-- Migration 004: Drop tokens and authorization_codes tables -- Reason: Phase 2+3 of IndieAuth authorization server removal -- StarPunk no longer acts as an authorization server or token issuer -- External IndieAuth providers handle token issuance -- Date: 2025-11-24 -- ADR: ADR-030 -- Drop tokens table (token issuance removed) DROP TABLE IF EXISTS tokens; -- Drop authorization_codes table (authorization endpoint removed in Phase 1) DROP TABLE IF EXISTS authorization_codes;