浏览代码

Se agrego db a ignore

Jose Cienfuegos 9 月之前
父节点
当前提交
cb93fe4bf0
共有 2 个文件被更改,包括 6 次插入4 次删除
  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,