The status 'pending_user_approval' is 21 characters, exceeding VARCHAR(20). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
320 B
SQL
10 lines
320 B
SQL
-- Migration: 044_fix_status_column_length.sql
|
|
-- Date: 2026-02-01
|
|
-- Description: Increase status column length to accommodate 'pending_user_approval' (21 chars)
|
|
|
|
ALTER TABLE membership_applications
|
|
ALTER COLUMN status TYPE VARCHAR(30);
|
|
|
|
-- Grant permissions
|
|
GRANT ALL ON TABLE membership_applications TO nordabiz_app;
|