We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ff7c9 commit e7a44a0Copy full SHA for e7a44a0
1 file changed
postgres/pg_deeplake--1.0.sql
@@ -13,6 +13,10 @@ COMMENT ON DOMAIN VIDEO IS 'Binary video data stored as BYTEA';
13
CREATE DOMAIN FILE AS BYTEA;
14
COMMENT ON DOMAIN FILE IS 'Binary file data stored as BYTEA';
15
16
+-- FILE_ID domain: UUID alias for file identifiers
17
+CREATE DOMAIN FILE_ID AS UUID;
18
+COMMENT ON DOMAIN FILE_ID IS 'UUID identifier for files';
19
+
20
CREATE FUNCTION handle_index_creation() RETURNS event_trigger AS 'pg_deeplake' LANGUAGE C VOLATILE;
21
22
-- Create the event trigger to listen for CREATE INDEX events
0 commit comments