- Changed VITE_SUPABASE_URL in .env.example for deployment consistency. - Added new user management functionality to reset user passwords in UserManagement component. - Updated supabase.ts to include first and last name fields in user profiles and added password reset functionality. - Enhanced DashboardLayout to include a user profile view and improved user display in TopNavbar. - Updated seed.sql to create additional users with roles for testing purposes.
13 lines
465 B
SQL
13 lines
465 B
SQL
-- 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';
|
|
|