Skip to content

Commit e7a44a0

Browse files
committed
Move domain types to extension.
1 parent 00ff7c9 commit e7a44a0

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

postgres/pg_deeplake--1.0.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ COMMENT ON DOMAIN VIDEO IS 'Binary video data stored as BYTEA';
1313
CREATE DOMAIN FILE AS BYTEA;
1414
COMMENT ON DOMAIN FILE IS 'Binary file data stored as BYTEA';
1515

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+
1620
CREATE FUNCTION handle_index_creation() RETURNS event_trigger AS 'pg_deeplake' LANGUAGE C VOLATILE;
1721

1822
-- Create the event trigger to listen for CREATE INDEX events

0 commit comments

Comments
 (0)