Hello everybody,
I have a question about DB modeling, I have a table created as following:
CREATE TABLE "users_articles" ("id" INTEGER PRIMARY KEY NOT NULL,"article_id" INTEGER,"user_id" INTEGER)
- Which statement will alter this table, so that the combination of article_id and user_id is unique?
- Which statement tells me, if the DB has already been altered?
Thanks,
Markus