-- Add first_name and last_name fields to user_profiles table -- This migration adds name fields to store user's first and last names -- Add first_name and last_name columns to user_profiles table ALTER TABLE public.user_profiles ADD COLUMN first_name TEXT, ADD COLUMN last_name TEXT; -- Add comments for documentation COMMENT ON COLUMN public.user_profiles.first_name IS 'User first name'; COMMENT ON COLUMN public.user_profiles.last_name IS 'User last name';