wiki.techinc.nl/tests/phpunit/includes/CommentStore/CommentStoreTest.sql
Umherirrender 790ae736c1 tests: Move test cases from /includes/ into sub folder
Follow move of the tested class
Most moves are part of T321882

Change-Id: I74ab45d6a5331dcb2ff0b65dc2cc7c6315146646
2023-09-13 00:09:05 +02:00

17 lines
378 B
SQL

-- 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
);