Skip to content

Commit

Permalink
migrate structure
Browse files Browse the repository at this point in the history
  • Loading branch information
dracony committed Nov 14, 2016
1 parent 8d017ac commit c1dac04
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
11 changes: 11 additions & 0 deletions assets/config/database.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

return array(
'default' => array(
'database' => 'phpixie',
'user' => 'phpixie',
'password' => 'phpixie',
'adapter' => 'mysql', // one of: mysql, pgsql, sqlite
'driver' => 'pdo'
)
);
24 changes: 24 additions & 0 deletions assets/config/migrate.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

return array(
'migrations' => array(
'default' => array(

// database connection name
'connection' => 'default',

//relative to the /assets/migrate/ folder
'path' => 'migrations'
)
),
'seeds' => array(
'default' => array(

// database connection name
'connection' => 'default',

//relative to the /assets/migrate/ folder
'path' => 'seeds'
)
)
);
Empty file.
Empty file added assets/migrate/seeds/.gitkeep
Empty file.

0 comments on commit c1dac04

Please sign in to comment.