repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
* Add a h2 header to the begin of the results
[mediawiki.git]
/
maintenance
/
archives
/
patch-trackbacks.sql
blob
e3a47aae57455a8effe5ebe2560a68ccd23d865c
1
CREATE TABLE /*$wgDBprefix*/trackbacks (
2
tb_id INTEGER AUTO_INCREMENT PRIMARY KEY,
3
tb_page INTEGER REFERENCES page(page_id) ON DELETE CASCADE,
4
tb_title VARCHAR(255) NOT NULL,
5
tb_url BLOB NOT NULL,
6
tb_ex TEXT,
7
tb_name VARCHAR(255),
8
9
INDEX (tb_page)
10
);