aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/CommentStore/CommentStoreTest.sql
blob: f95781dd3e99d047b5279f955f15fb29b6856335 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- These are carefully crafted to work in all five supported databases

CREATE TABLE /*_*/commentstore1 (
  cs1_id integer not null,
  cs1_comment varchar(200),
  cs1_comment_id integer
);

CREATE TABLE /*_*/commentstore2 (
  cs2_id integer not null,
  cs2_comment varchar(200)
);

CREATE TABLE /*_*/commentstore2_temp (
  cs2t_id integer not null,
  cs2t_comment_id integer
);