Change the table seeders a little

This commit is contained in:
James Brooks
2015-01-16 10:36:35 +00:00
parent 9efb1f39da
commit c38f08cc22
3 changed files with 24 additions and 7 deletions
+11 -3
View File
@@ -18,15 +18,23 @@ class SettingsTableSeeder extends Seeder
$defaultSettings = [
[
"name" => "app_name",
"value" => "Test",
"value" => "Cachet Demo",
],
[
"name" => "app_domain",
"value" => "cachet.dev"
"value" => "https://status.cachethq.io",
],
[
"name" => "show_support",
"value" => "1"
"value" => "1",
],
[
"name" => "app_locale",
"value" => "en",
],
[
"name" => "app_timezone",
"value" => "Europe/London",
],
];