1
1
SET client_min_messages=ERROR;
4
4
identifier text PRIMARY KEY,
6
6
date_created timestamp without time zone NOT NULL);
8
8
INSERT INTO lp_OpenIdIdentifier (identifier, account, date_created)
9
9
SELECT identifier, account, date_created FROM OpenIdIdentifier
10
10
WHERE identifier NOT IN (SELECT identifier FROM lp_OpenIdIdentifier);
13
15
INSERT INTO LaunchpadDatabaseRevision VALUES (2208, 21, 0);