From 79c36f415c5ff588fca1ad2ae24886e55cde121e Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Thu, 23 Feb 2023 21:03:05 -0600 Subject: [PATCH] Update docs for tern new -e flag --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 6e0f7f9..c9b1447 100644 --- a/README.markdown +++ b/README.markdown @@ -123,7 +123,7 @@ To create a new migration: tern new name_of_migration -This will create a migration file with the given name prefixed by the next available sequence number (e.g. 001, 002, 003). +This will create a migration file with the given name prefixed by the next available sequence number (e.g. 001, 002, 003). The `-e` flag can be used to automatically open the new file in `EDITOR`. The migrations themselves have an extremely simple file format. They are simply the up and down SQL statements divided by a magic comment.