/usr/share/mediawiki-extensions/openid/openid_table.sql is in mediawiki-extensions-openid 3.5~deb7u2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | CREATE TABLE /*$wgDBprefix*/user_openid (
uoi_openid varchar(255) NOT NULL,
uoi_user int(5) unsigned NOT NULL,
PRIMARY KEY uoi_openid (uoi_openid),
UNIQUE INDEX uoi_user (uoi_user)
) TYPE=InnoDB;
|