From a2e823c75c87f08e0dee6c9c0a9e6b06b2018017 Mon Sep 17 00:00:00 2001 From: Adrian Macneil Date: Thu, 31 Oct 2024 22:50:37 -0700 Subject: [PATCH] Update README.md Remove outdated postgres comment. Closes #585 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78fb7a40..0560c4e5 100644 --- a/README.md +++ b/README.md @@ -401,7 +401,7 @@ dbmate supports options passed to a migration block in the form of `key:value` p **transaction** -`transaction` is useful if you need to run some SQL which cannot be executed from within a transaction. For example, in Postgres, you would need to disable transactions for migrations that alter an enum type to add a value: +`transaction` is useful if you do not want to run SQL inside a transaction: ```sql -- migrate:up transaction:false