Added UserAccountData and auth to the SQLite connector. Compiles, runs, but access to these tables doesn't work.

This commit is contained in:
Diva Canto
2010-02-20 17:52:38 -08:00
parent 845a390e93
commit 0ab6aac052
11 changed files with 373 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
BEGIN TRANSACTION;
-- useraccounts table
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 INT(11),
UserLevel integer NOT NULL DEFAULT 0,
UserFlags integer NOT NULL DEFAULT 0,
UserTitle varchar(64) NOT NULL DEFAULT ''
);
COMMIT;