From b361c5ad622ef663c27535ac8037615304082ec0 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Tue, 6 Feb 2024 15:43:09 +0000 Subject: [PATCH] Fix bug in README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98f8d53..a1f5dec 100644 --- a/README.md +++ b/README.md @@ -760,7 +760,7 @@ wherever it is will be replaced by the content of `migrations/fixtures/functions/myfunction.sql` when the migration is committed. ```sql ---!include fixtures/functions/myfunction.sql +--!include functions/myfunction.sql drop policy if exists access_by_numbers on mytable; create policy access_by_numbers on mytable for update using (myfunction(4, 2) < 42); ```