HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Foreign Key
How do I create a column with foreign key?
0
How do I create a column with foreign key?
Comments
Vanilla doesn't use foreign keys, that might be the reason why foreign keys are not directly supported in the database classes. But you can always use raw SQL (if you know what you are doing 😀)
Thanks, I'll try that out!
$Structure = GDN::Structure();
$Structure->table('FK_TEST')
->column('DiscussionID', 'int', false)
->set();
$px = Gdn::structure()->databasePrefix();
$queryString = "ALTER TABLE {$px}FK_TEST ADD FOREIGN KEY (DiscussionID) REFERENCES {$px}Discussion(DiscussionID);";
Gdn::sql()->query($queryString);
@R_J I ran above queries but I keep getting => errno:150 "Foreign key constraint is incorrectly formatted"
https://xrstf.de/2016/01/mysql-foreign-key-constraint-is-incorrectly-formed/