mirror of
https://github.com/opensim/opensim.git
synced 2026-05-25 03:05:41 +08:00
6 lines
265 B
SQL
6 lines
265 B
SQL
BEGIN TRANSACTION
|
|
|
|
INSERT INTO auth (UUID, passwordHash, passwordSalt, webLoginKey, accountType) SELECT [UUID] AS UUID, [passwordHash] AS passwordHash, [passwordSalt] AS passwordSalt, [webLoginKey] AS webLoginKey, 'UserAccount' as [accountType] FROM users;
|
|
|
|
|
|
COMMIT |