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
| -- Custom SQL migration file, put your code below! -- | |
| CREATE EXTENSION IF NOT EXISTS unaccent; | |
| CREATE EXTENSION IF NOT EXISTS pgcrypto; | |
| --> statement-breakpoint | |
| CREATE OR REPLACE FUNCTION uuidv7() | |
| RETURNS uuid AS $$ | |
| DECLARE | |
| unix_ts_ms bigint; | |
| rand_bytes bytea; |