from IUserAccountService, we need to define what goes in there. Change the handler to the generic handler. Adjust migrations, add index
10 lines
277 B
PL/PgSQL
10 lines
277 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE UNIQUE INDEX PrincipalID ON UserAccounts(PrincipalID);
|
|
CREATE INDEX Email ON UserAccounts(Email);
|
|
CREATE INDEX FirstName ON UserAccounts(FirstName);
|
|
CREATE INDEX LastName ON UserAccounts(LastName);
|
|
CREATE INDEX Name ON UserAccounts(FirstName,LastName);
|
|
|
|
COMMIT;
|