@golemio/pid 2.7.2-dev.870216151 → 2.7.2-dev.871263965

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -89,7 +89,7 @@ WITH init_values AS (
89
89
  DATE_PART('year', NOW())::INT,
90
90
  DATE_PART('month', NOW())::INT,
91
91
  DATE_PART('day', NOW())::INT,
92
- 10,36,'10','Europe/Prague'
92
+ 08,51,'10','Europe/Prague'
93
93
  ) as updated_at
94
94
  )
95
95
  INSERT INTO "vehiclepositions_trips"("cis_line_id","cis_trip_number","run_number","cis_line_short_name","created_at","gtfs_route_id","gtfs_route_short_name","gtfs_trip_id","id","updated_at","start_cis_stop_id","start_cis_stop_platform_code","start_time","start_timestamp","vehicle_type_id","wheelchair_accessible","create_batch_id","created_by","update_batch_id","updated_by","agency_name_scheduled","origin_route_name","agency_name_real","vehicle_registration_number","gtfs_trip_headsign","start_asw_stop_id","gtfs_route_type","gtfs_block_id","last_position_id","is_canceled","end_timestamp","gtfs_trip_short_name")
@@ -1,7 +1,7 @@
1
- alter table ropidgtfs_precomputed_departures alter column route_type type bpchar(1) using route_type::bpchar;
1
+ alter table ropidgtfs_precomputed_departures alter column route_type type bpchar(1) using left(route_type::text, 1)::bpchar;
2
2
  alter table ropidgtfs_precomputed_departures alter column route_type drop default;
3
3
  alter table ropidgtfs_precomputed_departures alter column route_type drop not null;
4
- alter table if exists ropidgtfs_precomputed_departures_tmp alter column route_type type bpchar(1) using route_type::bpchar;
4
+ alter table if exists ropidgtfs_precomputed_departures_tmp alter column route_type type bpchar(1) using left(route_type::text, 1)::bpchar;
5
5
  alter table if exists ropidgtfs_precomputed_departures_tmp alter column route_type drop default;
6
6
  alter table if exists ropidgtfs_precomputed_departures_tmp alter column route_type drop not null;
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golemio/pid",
3
- "version": "2.7.2-dev.870216151",
3
+ "version": "2.7.2-dev.871263965",
4
4
  "description": "Golemio PID Module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",