1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-05-17 16:38:17 +03:00
kohana-migrations/config/minion/migration.php
Evan Purkhiser bc28977d65 Cleanup coding style to conform to Kohana CS
- Added variable names to just about all @param tags
 - Ensured proper alignment in doc block comments
 - Ensured proper file spacing and trimmed all trailing whitespace
 - Corrected improper languge construct formats (eg if () not if())
 - Corrected some assignment operator alignment
 - A few spelling corrections
 - All classes pass `phpcs --Standard=Kohana` (asside from tests)
2012-10-24 04:08:09 -04:00

23 lines
433 B
PHP

<?php
return array(
/**
* A mapping of group_connections => db_connection to use
*/
'group_connection' => array(),
/**
* The table used to store migrations
*/
'table' => 'minion_migrations',
/**
* This specifies which migration should be the "base", in timestamp form.
* This migration will not be run when --migrate-down is called
*
* NULL means all migrations will run
*/
'lowest_migration' => NULL,
);