Published
- 1 min read
add column if not exists postgresql
The solution for this is noted below
add column if not exists postgresql
Solution
ALTER TABLE table_name ADD COLUMN IF NOT EXISTS column_name INTEGER;
Try other methods by searching on the site. That is if this doesn’t work