Is it possible to define a foreign key to more tables? I tried something like this but I get error when creating the table in phpmyadmin:
Code:// ... FOREIGN KEY (post_id) REFERENCES posts(id) ON DELETE CASCADE, FOREIGN KEY (post_id) REFERENCES posts_fulltext(id) ON DELETE CASCADE, // ...











Bookmarks