15 lines
291 B
PHP
15 lines
291 B
PHP
|
<?php
|
||
|
namespace Framadate\Migration;
|
||
|
|
||
|
interface Migration {
|
||
|
|
||
|
/**
|
||
|
* This methode is called only one time in the migration page.
|
||
|
*
|
||
|
* @param \PDO $pdo The connection to database
|
||
|
* @return bool true is the execution succeeded
|
||
|
*/
|
||
|
function execute(\PDO $pdo);
|
||
|
|
||
|
}
|
||
|
|