He's talking about the FOREIGN activation ie:
Code:
CREATE TABLE foo (
id INT NOT NULL auto_increment,
UNIQUE id (id),
PRIMARY KEY (id)
);
CREATE TABLE bar (
id INT NOT NULL auto_increment,
foo_id INT NOT NULL,
UNIQUE id (id),
PRIMARY KEY (id)
FOREIGN KEY (foo_id) REFERENCES foo
);