[geeklog-cvs] Auth_Enterprise/Server/sql mysql.sql,1.2,1.3

tony at iowaoutdoors.org tony at iowaoutdoors.org
Sun Jul 4 12:54:35 EDT 2004


Update of /var/cvs/Auth_Enterprise/Server/sql
In directory www:/tmp/cvs-serv29044

Modified Files:
	mysql.sql 
Log Message:
Added table ae_log_message which is where we will optionally log any errors.

Index: mysql.sql
===================================================================
RCS file: /var/cvs/Auth_Enterprise/Server/sql/mysql.sql,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** mysql.sql	16 Jun 2004 19:43:31 -0000	1.2
--- mysql.sql	4 Jul 2004 16:54:31 -0000	1.3
***************
*** 93,95 ****
  
  INSERT INTO ae_privilege_access VALUES ('AE_ADMIN_PRIV','Auth_Enterprise',NULL,1);
! INSERT INTO ae_privilege_access VALUES ('AE_ACCOUNT_MGR','TEST_PEAR_DB_APP','WEBMASTER at LOCALHOST',NULL);
\ No newline at end of file
--- 93,107 ----
  
  INSERT INTO ae_privilege_access VALUES ('AE_ADMIN_PRIV','Auth_Enterprise',NULL,1);
! INSERT INTO ae_privilege_access VALUES ('AE_ACCOUNT_MGR','TEST_PEAR_DB_APP','WEBMASTER at LOCALHOST',NULL);
! 
! CREATE TABLE ae_log_message (
!   lm_msg_id mediumint(10) NOT NULL auto_increment,
!   lm_code string varchar(30),
!   lm_message string varchar(128) NOT NULL,
!   lm_file string varchar(50) NOT NULL,
!   lm_line int(5) unsigned NOT NULL,
!   lm_trace text,
!   PRIMARY KEY (lm_msg_id),
!   INDEX lm_code (lm_code)
! ) TYPE=INNODB;
!         
\ No newline at end of file




More information about the geeklog-cvs mailing list