Fixed the build script; updated users schema to no longer hold password information and to not require contact information; added a set of users and groups for VSS
git-svn-id: file:///svn-source/pmgr/branches/pre_0.1_work_20090819@800 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
@@ -274,14 +274,10 @@ DROP TABLE IF EXISTS `pmgr_users`;
|
||||
CREATE TABLE `pmgr_users` (
|
||||
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
`code` VARCHAR(12) NOT NULL, -- User style "id"
|
||||
|
||||
-- Login details. Passwords are not yet used (and so NULL).
|
||||
`login` VARCHAR(30) NOT NULL,
|
||||
`salt` CHAR(12) DEFAULT NULL,
|
||||
`passhash` VARCHAR(255) DEFAULT NULL,
|
||||
`login` VARCHAR(30) NOT NULL,
|
||||
|
||||
-- Contact information for this user
|
||||
`contact_id` INT(10) UNSIGNED NOT NULL,
|
||||
`contact_id` INT(10) UNSIGNED DEFAULT NULL,
|
||||
|
||||
-- Specific comments
|
||||
`comment` VARCHAR(255) DEFAULT NULL,
|
||||
|
||||
Reference in New Issue
Block a user