Scaffold a new Supabase migration file with the correct naming convention. Usage: /db-migrate <description>
Create a new Supabase database migration for: $ARGUMENTS
supabase/migrations/ — always create a new onesupabase/migrations/ to determine the next sequence number (format: NNN)supabase/migrations/NNN_<description>.sql where:
NNN is the next zero-padded 3-digit number (e.g., 010, 011)<description> is derived from $ARGUMENTS, lowercased, spaces replaced with underscores, alphanumeric only-- Migration: NNN_<description>
-- Purpose: <one-line summary from $ARGUMENTS>
--
-- To apply: supabase db push
-- To revert: <describe manual rollback steps>
-- Add your SQL here
$ARGUMENTSALTER TABLE ... ADD COLUMN with appropriate defaults