Follow move of the tested class Most moves are part of T321882 Change-Id: I74ab45d6a5331dcb2ff0b65dc2cc7c6315146646
17 lines
378 B
SQL
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
|
|
);
|