From b36401c1cdacad180227514fbf0faa2d9245923c Mon Sep 17 00:00:00 2001 From: Rikard Bartholf Date: Fri, 12 Feb 2016 13:34:24 +0100 Subject: [PATCH] Fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a06754e..b897eff 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The naming convention for migration files are: - ...and so on **Example** -The first file, `migration/000.000.sql` may look like this: +The first file, `migrations/000.000.sql` may look like this: ``` create table users ( name varchar(32) not null, @@ -31,7 +31,7 @@ create table users ( ); ``` -The second file, `migration/000.001.sql` may look like this: +The second file, `migrations/000.001.sql` may look like this: ``` alter table users add email varchar(256) not null;