Skip to content

Commit

Permalink
Update config file and prepare for v2.2.3 update.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Aug 30, 2014
1 parent de93da5 commit 8306943
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ title: Tenanti Change Log

## Version 2.2 {#v2-2}

### v2.2.3@dev {#v2-2-3}
### v2.2.3 {#v2-2-3}

* Allow migration note to be available when running command.
* Fixes `--pretend` command not passing entity key and entity instance.
* Utilize `Illuminate\Support\Arr`.
* Add `chunk` option to configuration file.

### v2.2.2 {#v2-2-2}

Expand Down
23 changes: 23 additions & 0 deletions src/config/config.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
<?php

return array(

/*
|----------------------------------------------------------------------
| Chunk Limit
|----------------------------------------------------------------------
|
| To avoid failure during bulk update on a huge record, database query
| is separated into smaller chunk.
|
*/

'chunk' => 100,

/*
|----------------------------------------------------------------------
| Driver Configuration
|----------------------------------------------------------------------
|
| Setup your driver configuration to let us match the driver name to
| a Model and path to migration.
|
*/

'drivers' => array(
'user' => array(
'model' => 'User',
Expand Down

0 comments on commit 8306943

Please sign in to comment.