This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
import os | |
import time | |
# get the scene | |
scn = bpy.context.scene | |
# get the output path | |
output_path = scn.render.filepath |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/drizzle-kit/bin.cjs b/node_modules/drizzle-kit/bin.cjs | |
index 9a93653..d4c61ad 100755 | |
--- a/node_modules/drizzle-kit/bin.cjs | |
+++ b/node_modules/drizzle-kit/bin.cjs | |
@@ -119591,6 +119591,9 @@ var init_connections = __esm({ | |
return result; | |
}; | |
const proxy = async (params) => { | |
+ params.sql = params.sql.replace(/a.attidentity AS identity_type/i, 'a.attidentity::text AS identity_type'); | |
+ params.sql = params.sql.replace(/a.attgenerated AS generated_type/i, 'a.attgenerated::text AS generated_type'); |
OlderNewer