* Added useraccount table

slimupdates
Diva Canto 2009-12-29 09:22:52 -08:00
parent a462e440d5
commit e9df86a6d6
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
BEGIN;
CREATE TABLE `useraccount` (
`UserID` 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;