change column name from last_update_date to last_update_time
authorJason Etheridge <jason@esilibrary.com>
Thu, 8 Sep 2011 05:54:11 +0000 (01:54 -0400)
committerThomas Berezansky <tsbere@mvlc.org>
Thu, 8 Sep 2011 19:40:16 +0000 (15:40 -0400)
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Signed-off-by: Thomas Berezansky <tsbere@mvlc.org>
Open-ILS/examples/fm_IDL.xml
Open-ILS/src/sql/Pg/005.schema.actors.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.schema.au_last_update_date.sql
Open-ILS/xul/staff_client/server/locale/en-US/common.properties
Open-ILS/xul/staff_client/server/locale/en-US/patron.properties
Open-ILS/xul/staff_client/server/patron/display.js
Open-ILS/xul/staff_client/server/patron/util.js

index 15e1584..7900e7d 100644 (file)
@@ -2593,7 +2593,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
                        <field reporter:label="OPAC/Staff Client User Name" name="usrname"  reporter:datatype="text"/>
                        <field reporter:label="OPAC/Staff Client Holds Alias" name="alias"  reporter:datatype="text"/>
                        <field reporter:label="Juvenile" name="juvenile"  reporter:datatype="bool"/>
-                       <field reporter:label="Record Last Update Date" name="last_update_date" reporter:datatype="timestamp"/>
+                       <field reporter:label="Record Last Update Time" name="last_update_time" reporter:datatype="timestamp"/>
                        <field reporter:label="Additional Permission Groups" name="groups" oils_persist:virtual="true" reporter:datatype="link"/>
                        <field reporter:label="Is Deleted" name="deleted" reporter:datatype="bool"/>
                        <field reporter:label="User Notes" name="notes" oils_persist:virtual="true" reporter:datatype="link"/>
index f9e8c3d..7068baf 100644 (file)
@@ -64,7 +64,7 @@ CREATE TABLE actor.usr (
        create_date             TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT now(),
        expire_date             TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT (now() + '3 years'::INTERVAL),
        claims_never_checked_out_count  INT         NOT NULL DEFAULT 0,
-    last_update_date    TIMESTAMP WITH TIME ZONE
+    last_update_time    TIMESTAMP WITH TIME ZONE
 );
 COMMENT ON TABLE actor.usr IS $$
 User objects
@@ -120,7 +120,7 @@ $$ LANGUAGE PLPGSQL;
 CREATE OR REPLACE FUNCTION actor.au_updated()
 RETURNS TRIGGER AS $$
 BEGIN
-    NEW.last_update_date := now();
+    NEW.last_update_time := now();
        RETURN NEW;
 END;
 $$ LANGUAGE plpgsql;
index 3b79291..f53b347 100644 (file)
@@ -1,22 +1,22 @@
--- Evergreen DB patch XXXX.schema.au_last_update_date.sql
+-- Evergreen DB patch XXXX.schema.au_last_update_time.sql
 BEGIN;
 
 -- check whether patch can be applied
 SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
 
--- Add new column last_update_date to actor.usr, with trigger to maintain it
+-- Add new column last_update_time to actor.usr, with trigger to maintain it
 -- Add corresponding new column to auditor.actor_usr_history
 
 ALTER TABLE actor.usr
-       ADD COLUMN last_update_date TIMESTAMPTZ;
+       ADD COLUMN last_update_time TIMESTAMPTZ;
 
 ALTER TABLE auditor.actor_usr_history
-       ADD COLUMN last_update_date TIMESTAMPTZ;
+       ADD COLUMN last_update_time TIMESTAMPTZ;
 
 CREATE OR REPLACE FUNCTION actor.au_updated()
 RETURNS TRIGGER AS $$
 BEGIN
-    NEW.last_update_date := now();
+    NEW.last_update_time := now();
        RETURN NEW;
 END;
 $$ LANGUAGE plpgsql;
index fd84c89..3968a6f 100644 (file)
@@ -140,7 +140,7 @@ staff.au_alert_message_label=Alert
 staff.au_claims_returned_count_label=Returns Claimed
 staff.au_create_date_label=Created On
 staff.au_expire_date_label=Expires On
-staff.au_last_update_date_label=Updated On
+staff.au_last_update_time_label=Updated On
 staff.au_home_library_label=Home Library
 staff.au_home_library_fullname_label=Home Library (Full Name)
 staff.au_credit_forward_balance_label=Credit
index e21fee1..003af03 100644 (file)
@@ -110,7 +110,7 @@ staff.patron.display.init.network_request.error_showing_alert=Error showing patr
 staff.patron.display.render_search_form.patron_search=Patron Search
 staff.patron.display.tab_name=Patron:
 staff.patron.display.no_alerts_or_messages=No Alerts, Blocks, or Messages
-# Field 1 = actor.usr.id, Field 2 = actor.usr.create_date, Field 3 = actor.usr.last_update_date
+# Field 1 = actor.usr.id, Field 2 = actor.usr.create_date, Field 3 = actor.usr.last_update_time
 staff.patron.display.db_data=Database ID: %1$s Create Date: %2$s Last Updated: %3$s
 staff.patron.hold_notices.tooltiptext=ID: %1$s Hold ID: %2$s Notifying Staff ID: %3$s
 staff.patron.hold_notices.new_notification_record=New Notification Record
index bc84ae6..29ad28d 100644 (file)
@@ -515,8 +515,8 @@ patron.display.prototype = {
                                     [
                                         obj.patron.id(),
                                         obj.patron.create_date(),
-                                        obj.patron.last_update_date()
-                                            ? obj.patron.last_update_date()
+                                        obj.patron.last_update_time()
+                                            ? obj.patron.last_update_time()
                                             : ''
                                     ]
                                 );
index 82a6e28..78c2707 100644 (file)
@@ -446,10 +446,10 @@ patron.util.columns = function(modify,params) {
             ,'sort_value' : function(my) { return util.date.db_date2Date( my.au.create_date() ).getTime(); }
         },
         { 
-            'persist' : 'hidden width ordinal', 'id' : 'au_last_update_date', 'label' : commonStrings.getString('staff.au_last_update_date_label'), 'flex' : 1, 
+            'persist' : 'hidden width ordinal', 'id' : 'au_last_update_time', 'label' : commonStrings.getString('staff.au_last_update_time_label'), 'flex' : 1, 
             'sort_type' : 'date',
-            'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.au.last_update_date(), "%{localized}" ); }
-            ,'sort_value' : function(my) { return util.date.db_date2Date( my.au.last_update_date() ).getTime(); }
+            'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.au.last_update_time(), "%{localized}" ); }
+            ,'sort_value' : function(my) { return util.date.db_date2Date( my.au.last_update_time() ).getTime(); }
         },
 
         {