wiki.techinc.nl/tests/phpunit/includes/user/ActorMigrationTest.sql
Amir Sarabadani cb18d1007e Reorg: Move ActorMigration and ActorMigrationBase to user/
This may seem a bit weird but anything else related to actor is already
under user/ including ActorCache, ActorNormalization, ActorStore and
ActorStoreFactory.

Bug: T321882
Change-Id: I7072b374bba7a0cd9d905e399c822bf30bd5c0d8
2022-12-16 13:44:33 +01:00

27 lines
578 B
SQL

-- These are carefully crafted to work in all five supported databases
CREATE TABLE /*_*/actormigration1 (
am1_id integer not null,
am1_user integer,
am1_user_text varchar(200),
am1_actor integer
);
CREATE TABLE /*_*/actormigration2 (
am2_id integer not null,
am2_user integer,
am2_user_text varchar(200),
am2_actor integer
);
CREATE TABLE /*_*/actormigration2_temp (
am2t_id integer not null,
am2t_actor integer
);
CREATE TABLE /*_*/actormigration3 (
am3_id integer not null,
am3_xxx integer,
am3_xxx_text varchar(200),
am3_xxx_actor integer
);