mirror of
https://github.com/opensim/opensim.git
synced 2026-05-27 12:26:01 +08:00
from IUserAccountService, we need to define what goes in there. Change the handler to the generic handler. Adjust migrations, add index
6 lines
409 B
PL/PgSQL
6 lines
409 B
PL/PgSQL
BEGIN;
|
|
|
|
INSERT INTO UserAccounts (UserID, ScopeID, FirstName, LastName, Email, ServiceURLs, Created) SELECT `UUID` AS PrincipalID, '00000000-0000-0000-0000-000000000000' AS ScopeID, username AS FirstName, lastname AS LastName, email as Email, CONCAT('AssetServerURI=', userAssetURI, ' InventoryServerURI=', userInventoryURI, ' GatewayURI= HomeURI=') AS ServiceURLs, created as Created FROM users;
|
|
|
|
COMMIT;
|