Spaces:
Sleeping
Sleeping
File size: 249 Bytes
ea9ca44 | 1 2 3 4 5 6 |
-- Add 'projects' column to profiles table to store extracted project details
-- It will store a JSONB array of objects: [{ title, technologies_used, description }]
alter table profiles
add column if not exists projects jsonb default '[]'::jsonb;
|