#16 update scaffolding and remove accidentally committed settings file

This commit is contained in:
Nabeel Shahzad
2017-06-20 15:17:40 -05:00
parent ee8cb7e9e0
commit 3f83e1bf3d
7 changed files with 7 additions and 36 deletions

View File

@@ -2,7 +2,7 @@
return array(
// which type of store to use.
// valid options: 'json', 'database'
'store' => 'json',
'store' => env('APP_SETTINGS_STORE', 'database'),
// if the json store is used, give the full path to the .json file
// that the store writes to.
@@ -15,7 +15,7 @@ return array(
// set to null, the default connection will be used.
'connection' => null,
// If you want to use custom column names in database store you could
// If you want to use custom column names in database store you could
// set them in this configuration
'keyColumn' => 'key',
'valueColumn' => 'value'