orchid-orm 1.63.2 → 1.63.3
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.
- package/dist/migrations/index.js +1 -1
- package/dist/migrations/index.js.map +1 -1
- package/dist/migrations/index.mjs +1 -1
- package/dist/migrations/index.mjs.map +1 -1
- package/dist/migrations/node-postgres.js +1 -1
- package/dist/migrations/node-postgres.js.map +1 -1
- package/dist/migrations/node-postgres.mjs +1 -1
- package/dist/migrations/node-postgres.mjs.map +1 -1
- package/dist/migrations/postgres-js.js +1 -1
- package/dist/migrations/postgres-js.js.map +1 -1
- package/dist/migrations/postgres-js.mjs +1 -1
- package/dist/migrations/postgres-js.mjs.map +1 -1
- package/package.json +3 -3
package/dist/migrations/index.js
CHANGED
|
@@ -2029,7 +2029,7 @@ const getColumnDbTypeForComparison = (column, currentSchema) => {
|
|
|
2029
2029
|
return `"${type.slice(j)}"."${type.slice(0, j)}"${append}`;
|
|
2030
2030
|
}
|
|
2031
2031
|
};
|
|
2032
|
-
const freezeSqlClock = (sql) => sql.replaceAll("clock_timestamp()",
|
|
2032
|
+
const freezeSqlClock = (sql) => sql.replaceAll("clock_timestamp()", `'0.1ms'::interval + now()`);
|
|
2033
2033
|
const applyCompareSql = async (compareSql, adapter) => {
|
|
2034
2034
|
if (compareSql.expressions.length) {
|
|
2035
2035
|
const {
|