Skip to content

Commit

Permalink
docs: fix text highlighting in installation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Dec 9, 2016
1 parent 4ad1219 commit 1287f11
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ The table holding your user schema and data should contain these fields:

- `token` of a type of your choice, for instance of type `VARCHAR`. The following command will generate a migration for this:

```shell
bin/cake bake migration alter_users token:string:unique
```
.. code-block:: php
bin/cake bake migration alter_users token:string:unique
- `verified` of type `BOOLEAN`, e.g. `TINYINT(1)` for MySQL. The following command will generate a migration for this:

```shell
bin/cake bake migration alter_users verified:boolean
```
.. code-block:: php
bin/cake bake migration alter_users verified:boolean

0 comments on commit 1287f11

Please sign in to comment.