-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphinx.php
More file actions
32 lines (30 loc) · 794 Bytes
/
Copy pathphinx.php
File metadata and controls
32 lines (30 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
// provides the
require "config.php";
return array(
"paths" => array(
"migrations" => "db/migrations",
"seeds" => "db/seeds"
),
"environments" => array(
"default_migration_table" => "phinxlog",
"default_database" => "production",
"production" => array(
"adapter" => "mysql",
"host" => $dbhost,
"name" => $dbname,
"user" => $dbuser,
"pass" => $dbpass,
"port" => 3306 //$_ENV['DB_PORT']
),
"development" => array(
"adapter" => "mysql",
"host" => $dbhost,
"name" => $dbname,
"user" => $dbuser,
"pass" => $dbpass,
"port" => 3306 //$_ENV['DB_PORT']
)
)
);
?>