88cae82e71
+ Use this system to migrate from 0.8 to 0.9 (WIP)
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);
|
|
|
|
}
|
|
|