Merge "StringUtils: Add a utility for checking if a string is a valid regex"
[lhc/web/wiklou.git] / tests / phpunit / includes / ActorMigrationTest.sql
1 -- These are carefully crafted to work in all five supported databases
2
3 CREATE TABLE /*_*/actormigration1 (
4 am1_id integer not null,
5 am1_user integer,
6 am1_user_text varchar(200),
7 am1_actor integer
8 );
9
10 CREATE TABLE /*_*/actormigration2 (
11 am2_id integer not null,
12 am2_user integer,
13 am2_user_text varchar(200)
14 );
15
16 CREATE TABLE /*_*/actormigration2_temp (
17 am2t_id integer not null,
18 am2t_actor integer
19 );
20
21 CREATE TABLE /*_*/actormigration3 (
22 am3_id integer not null,
23 am3_xxx integer,
24 am3_xxx_text varchar(200),
25 am3_xxx_actor integer
26 );