From: <ope...@li...> - 2002-06-25 02:53:03
|
Update of /cvsroot/openposs/Database In directory usw-pr-cvs1:/tmp/cvs-serv29561 Modified Files: MySQL_Creation_Script Log Message: Added the Super User entry to the SystemUsers table Username: Admin Password: openPOS Index: MySQL_Creation_Script =================================================================== RCS file: /cvsroot/openposs/Database/MySQL_Creation_Script,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MySQL_Creation_Script 25 Jun 2002 02:26:18 -0000 1.6 --- MySQL_Creation_Script 25 Jun 2002 02:53:00 -0000 1.7 *************** *** 66,69 **** --- 66,74 ---- Active tinyint NOT NULL default 0, SuperUser tinyint NOT NULL default 0); + + # Insert the initial SuperUser into the Users Table. + # Password field correlates to "openPOS". The password of this user should be changed + # immediately on a production server, as this account can change anything within the system. + INSERT INTO openPOS.SystemUsers (UserName, FullName, Password, Active, SuperUser) VALUES ("Admin", "openPOS Admin User", "7c524cbe562633af1c281279e048dc5b", 1, 1); # |