mirror of
https://github.com/opensim/opensim.git
synced 2026-06-06 02:55:47 +08:00
from IUserAccountService, we need to define what goes in there. Change the handler to the generic handler. Adjust migrations, add index
14 lines
305 B
PL/PgSQL
14 lines
305 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE `UserAccounts` (
|
|
`PrincipalID` CHAR(36) NOT NULL,
|
|
`ScopeID` CHAR(36) NOT NULL,
|
|
`FirstName` VARCHAR(64) NOT NULL,
|
|
`LastName` VARCHAR(64) NOT NULL,
|
|
`Email` VARCHAR(64),
|
|
`ServiceURLs` TEXT,
|
|
`Created` DATETIME
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
COMMIT;
|