Initial commit — Performance West telecom compliance platform
Includes: API (Express/TypeScript), Astro site, Python workers, document generators, FCC compliance tools, Canada CRTC formation, Ansible infrastructure, and deployment scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
commit
f8cd37ac8c
1823 changed files with 145167 additions and 0 deletions
14
api/migrations/035_esign_columns.sql
Normal file
14
api/migrations/035_esign_columns.sql
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
-- 035: eSign columns for CRTC notification letter signing
|
||||
--
|
||||
-- esign_signed_at: timestamp when the client signed the letter
|
||||
-- esign_signature_b64: base64-encoded PNG of the drawn signature
|
||||
-- esign_signer_email: email address used to sign (from portal JWT)
|
||||
-- crtc_letter_minio_key: MinIO object key for the generated CRTC letter PDF
|
||||
-- (set by the pipeline at Step 6 so the sign page can
|
||||
-- generate a presigned preview URL)
|
||||
|
||||
ALTER TABLE canada_crtc_orders
|
||||
ADD COLUMN IF NOT EXISTS esign_signed_at TIMESTAMPTZ,
|
||||
ADD COLUMN IF NOT EXISTS esign_signature_b64 TEXT,
|
||||
ADD COLUMN IF NOT EXISTS esign_signer_email TEXT,
|
||||
ADD COLUMN IF NOT EXISTS crtc_letter_minio_key TEXT;
|
||||
Loading…
Add table
Add a link
Reference in a new issue