Could someone please check this - I may be wrong but it looks like the table-prefix is needed here

This commit is contained in:
Aran Dunkley 2008-05-10 07:04:15 +00:00
parent a27ed4af72
commit ba07070395

View file

@ -1100,7 +1100,7 @@ CREATE TABLE /*$wgDBprefix*/logging (
CREATE TABLE /*$wgDBprefix*/trackbacks (
tb_id int auto_increment,
tb_page int REFERENCES page(page_id) ON DELETE CASCADE,
tb_page int REFERENCES /*$wgDBprefix*/page(page_id) ON DELETE CASCADE,
tb_title varchar(255) NOT NULL,
tb_url blob NOT NULL,
tb_ex text,