From f5e180d88549e93a2d9f417ed650afce390a0365 Mon Sep 17 00:00:00 2001 From: Sam Georges Date: Thu, 15 May 2014 11:49:24 +1000 Subject: [PATCH] Fixes #54 - Make sqlite db ref rewritable --- app/config/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/database.php b/app/config/database.php index f479bf409..d79cb0441 100644 --- a/app/config/database.php +++ b/app/config/database.php @@ -48,7 +48,7 @@ return array( 'sqlite' => array( 'driver' => 'sqlite', - 'database' => __DIR__.'/../database/production.sqlite', + 'database' => 'database/production.sqlite', 'prefix' => '', ),