Skip to content

Commit

Permalink
minor typos (feathersjs-ecosystem#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Summers authored and daffl committed Aug 30, 2018
1 parent 0a3d871 commit 6f5c547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ module.exports = Object.assign({

### Migrations workflow

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:
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:

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

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.
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.

> **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.

Expand Down

0 comments on commit 6f5c547

Please sign in to comment.