I have a SQL file that's parsed through a PostgreSQL database with no error and I have an annoying highlighting issue in VSCode. msgs is a type of an array of TEXTs.
CREATE TABLE users_chat
(
id SERIAL PRIMARY KEY,
user_id INTEGER,
friend_id INTEGER,
msgs TEXT[]
);
The [] is getting a red squiggly line and the file is red in the folder. It's annoying.
What can I do to get rid of it?
