Pārlūkot izejas kodu

Se agrego db a ignore

Jose Cienfuegos 9 mēneši atpakaļ
vecāks
revīzija
cb93fe4bf0
2 mainītis faili ar 6 papildinājumiem un 4 dzēšanām
  1. 3 1
      .gitignore
  2. 3 3
      config/db.php

+ 3 - 1
.gitignore

@@ -32,4 +32,6 @@ tests/_output/*
 tests/_support/_generated
 
 #vagrant folder
-/.vagrant
+/.vagrant
+
+config/db.php

+ 3 - 3
config/db.php

@@ -2,9 +2,9 @@
 
 return [
     'class' => 'yii\db\Connection',
-    'dsn' => 'pgsql:host=localhost;port=5432;dbname=hacienda-notificacion',
-    'username' => 'hacienda-notificacion',
-    'password' => 'hacienda-notificacion',
+    'dsn' => 'pgsql:host=localhost;port=5432;dbname=servicio_autos',
+    'username' => 'servicio_auto',
+    'password' => 'servicioauto',
     'charset' => 'utf8',
     'enableSchemaCache' => true,
     'schemaCacheDuration' => 60,