diff --git a/database/migrations/2015_04_13_064047_invoices_file.php b/database/migrations/2015_04_13_064047_invoices_file.php index 8eb8278c45ae..187514d3c0d7 100644 --- a/database/migrations/2015_04_13_064047_invoices_file.php +++ b/database/migrations/2015_04_13_064047_invoices_file.php @@ -18,9 +18,17 @@ class InvoicesFile extends Migration { }); DB::table('invoice_designs')->where('id', 1)->update([ - 'javascript' => '', 'filename'=>'js/templates/clean.js' ]); + DB::table('invoice_designs')->where('id', 2)->update([ + 'filename'=>'js/templates/bold.js' + ]); + DB::table('invoice_designs')->where('id', 3)->update([ + 'filename'=>'js/templates/modern.js' + ]); + DB::table('invoice_designs')->where('id', 4)->update([ + 'filename'=>'js/templates/plain.js' + ]); } /**