Skip to content

Commit

Permalink
Atualiza o arquivo exemplo do Phinx
Browse files Browse the repository at this point in the history
  • Loading branch information
edersoares committed Sep 5, 2018
1 parent 77cff65 commit 86aed50
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions phinx.php.example
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<?php

$environments = array(
"development" => array(
"adapter" => "pgsql",
"host" => "postgres_95",
"user" => "postgres",
"pass" => "postgres",
"port" => "5432",
"charset" => "utf8",
"name" => "ieducar",
),
);
$environments = [
"development" => [
"adapter" => "pgsql",
"host" => "postgres",
"port" => "5432",
"user" => "ieducar",
"pass" => "ieducar",
"name" => "ieducar",
"charset" => "utf8",
],
];

$configuration = array(
"paths" => array(
"migrations" => array(
$configuration = [
"paths" => [
"migrations" => [
"ieducar/misc/database/migrations",
),
"seeds" => array(
],
"seeds" => [
"ieducar/misc/database/seeds",
),
),
"environments" => $environments,
);
],
],
"environments" => $environments,
];

return $configuration;

0 comments on commit 86aed50

Please sign in to comment.