PostgreSQL -Spaltendatentyp von Integer bis Integer Array

ALTER TABLE test.test_id
    ALTER COLUMN test_id TYPE INTEGER[]
    USING array[test_id]::INTEGER[];
Karan Najwani