SECURITY: blacklist CSS var()
[lhc/web/wiklou.git] / tests / phpunit / includes / CommentStoreTest.sql
1 -- These are carefully crafted to work in all five supported databases
2
3 CREATE TABLE /*_*/commentstore1 (
4 cs1_id integer not null,
5 cs1_comment varchar(200),
6 cs1_comment_id integer
7 );
8
9 CREATE TABLE /*_*/commentstore2 (
10 cs2_id integer not null,
11 cs2_comment varchar(200)
12 );
13
14 CREATE TABLE /*_*/commentstore2_temp (
15 cs2t_id integer not null,
16 cs2t_comment_id integer
17 );