mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-13 21:01:08 -04:00
per @cekis, truncate so we don't get 40 char long timestamp floats
This commit is contained in:
@@ -18,8 +18,8 @@ create or replace package body loader as
|
||||
|
||||
open result_cursor for
|
||||
select character_object, station_id, uc_character_name, character_full_name,
|
||||
(create_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600,
|
||||
(last_login_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600
|
||||
trunc((create_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600),
|
||||
trunc((last_login_time - to_date('01/01/1970', 'MM/DD/YYYY')) * 24 * 3600)
|
||||
from players;
|
||||
|
||||
return result_cursor;
|
||||
|
||||
Reference in New Issue
Block a user