Blame view

basic2/config/db.php 342 Bytes
2fe1e5ce8   Андрей Ларионов   Первый коммит на ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  
  return [
      'class' => 'yii\db\Connection',
      'dsn' => 'mysql:host=localhost;dbname=yii2basic',
      'username' => 'root',
      'password' => '',
      'charset' => 'utf8',
  
      // Schema cache options (for production environment)
      //'enableSchemaCache' => true,
      //'schemaCacheDuration' => 60,
      //'schemaCache' => 'cache',
  ];