[Koha-cvs] CVS: koha/updater updatedatabase,1.106,1.107

Henri-Damien LAURENT hdl at users.sourceforge.net
Thu Jul 14 11:53:13 CEST 2005


Update of /cvsroot/koha/koha/updater
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27552/updater

Modified Files:
	updatedatabase 
Log Message:
Adding a log facility for actions watching.
Code to be widely used in order to report data modifications.


Index: updatedatabase
===================================================================
RCS file: /cvsroot/koha/koha/updater/updatedatabase,v
retrieving revision 1.106
retrieving revision 1.107
diff -C2 -r1.106 -r1.107
*** updatedatabase	6 Jul 2005 17:47:22 -0000	1.106
--- updatedatabase	14 Jul 2005 09:53:10 -0000	1.107
***************
*** 384,387 ****
--- 384,395 ----
                               PRIMARY KEY (mediatypecode)
                              )",
+     `action_logs` 	=> "(
+ 				    `timestamp` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL ,
+ 				    `user` INT( 11 ) NOT NULL ,
+ 				    `module` TEXT default '',
+ 				    `action` TEXT default '' ,
+ 				    `info` TEXT default '' ,
+ 				    PRIMARY KEY ( `timestamp` , `user` )
+ 			    )",
  );
  
***************
*** 1503,1506 ****
--- 1511,1518 ----
  
  # $Log$
+ # Revision 1.107  2005/07/14 09:53:10  hdl
+ # Adding a log facility for actions watching.
+ # Code to be widely used in order to report data modifications.
+ #
  # Revision 1.106  2005/07/06 17:47:22  hdl
  # Add branch selection and filter for budgets and funds.





More information about the Koha-cvs mailing list