There is no actor migration left for which a temp table is needed. Bug: T215466 Change-Id: I4e85b0a8e05323263a44454691ef3e6963aad3ab
15 lines
348 B
SQL
15 lines
348 B
SQL
-- These are carefully crafted to work in all three 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_xxx integer,
|
|
am2_xxx_text varchar(200),
|
|
am2_xxx_actor integer
|
|
);
|