Skip to content

Commit 6f5c547

Browse files
Evan Summersdaffl
Evan Summers
authored andcommitted
1 parent 0a3d871 commit 6f5c547

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ module.exports = Object.assign({
359359

360360
### Migrations workflow
361361

362-
The migration commands will load your application and it is therefore required that you define the same environment variables as when running you application. For example, many applications will define the database connection string in the startup command:
362+
The migration commands will load your application and it is therefore required that you define the same environment variables as when running your application. For example, many applications will define the database connection string in the startup command:
363363

364364
```
365365
DATABASE_URL=postgres://user:pass@host:port/dbname npm start
@@ -380,7 +380,7 @@ To create a new migration file, run the following command and provide a meaningf
380380
sequelize migration:create --name="meaningful-name"
381381
```
382382

383-
This will create a new file in the migrations folder. All migration file names will be prefixed with a sortable data/time string: `20160421135254-meaninful-name.js`. This prefix is crucial for making sure your migrations are executed in the proper order.
383+
This will create a new file in the migrations folder. All migration file names will be prefixed with a sortable data/time string: `20160421135254-meaningful-name.js`. This prefix is crucial for making sure your migrations are executed in the proper order.
384384

385385
> **NOTE:** The order of your migrations is determined by the alphabetical order of the migration scripts in the file system. The file names generated by the CLI tools will always ensure that the most recent migration comes last.
386386

0 commit comments

Comments
 (0)