@golemio/pid 2.5.4-dev.795328529 → 2.5.4-dev.795424376
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.
|
@@ -118,10 +118,10 @@ class RopidGTFSMetadataModel extends shared_1.RopidMetadataModel {
|
|
|
118
118
|
${indexQuery}
|
|
119
119
|
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameTmp} RENAME TO ${tableNameActual};
|
|
120
120
|
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD create_batch_id int8 NULL;
|
|
121
|
-
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD COLUMN created_at NULL DEFAULT now();
|
|
121
|
+
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD COLUMN created_at timestamptz NULL DEFAULT now();
|
|
122
122
|
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD created_by varchar(150) NULL;
|
|
123
123
|
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD update_batch_id int8 NULL;
|
|
124
|
-
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD COLUMN updated_at NULL DEFAULT now();
|
|
124
|
+
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD COLUMN updated_at timestamptz NULL DEFAULT now();
|
|
125
125
|
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} ADD updated_by varchar(150) NULL;
|
|
126
126
|
ALTER TABLE "${ropid_gtfs_1.RopidGTFS.pgSchema}".${tableNameActual} INHERIT "${ropid_gtfs_1.RopidGTFS.pgSchema}".${pgTableName};
|
|
127
127
|
`, { transaction: t });
|