I use SQLite 3 as my database management system.
I want to add a CONSTRAINT FOREIGN KEY to my table:
ALTER TABLE SocialMediaAccount
ADD CONSTRAINT FOREIGN KEY (memberFK) REFERENCES Member(id);
It gives me this error:
[18:09:09] Error while executing SQL query on database 'company': near "CONSTRAINT": syntax error
My table names and column names are right. I'm connected to the database.