README.md in phoenix-cli-0.1.1 vs README.md in phoenix-cli-0.1.2

- old
+ new

@@ -47,9 +47,18 @@ | model | Generates an Ecto model in your Phoenix application. | mix phoenix.gen.model | channel | Generates a Phoenix channel | mix phoenix.gen.channel | presence | Generates a Presence tracker for your application | mix phoenix.gen.presence | secret | Generates a secret and print it to the terminal | mix phoenix.gen.secret +## Database Commands + +| Command | Description | Phoenix equivalent | +| --- | --- | --- | +| db:create | Create database | mix ecto.create +| db:migrate | Run database migrations | mix ecto.migrate +| db:drop | Drop database | mix deps.drop +| db:dump | Dumps the current environment’s database | mix ecto.dump + ## Development When hacking on this gem, the REPL `pry` comes in handy. You can load the contents of the gem with `pry --gem`.