Skip to content

Commit 8dd6b0f

Browse files
authored
Merge pull request #224 from geirolz/geirolz-patch-1
Update README.md
2 parents cd8458a + 5153084 commit 8dd6b0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ For this example, we are going to use a simple `baseline migration` to add a tab
5656

5757
Baseline migrations are versioned and executed only when needed. The version is retrieved from the script file name.
5858

59-
So in this case, `V__001_create_user_table.sql`, the version will be `001`(remember the double underscore after `V`).
59+
So in this case, `V001__create_user_table.sql`, the version will be `001`(remember the double underscore after `V`).
6060

6161
Here we have our first migration(for MySQL database)
6262

63-
`resources/db/V__001_create_user_table.sql`
63+
`resources/db/V001__create_user_table.sql`
6464
```sql
6565
CREATE TABLE `user` (
6666
`id` bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY,

0 commit comments

Comments
 (0)