silverstripe-blog/code/compat/tasks/MigratableObject.php
2015-11-21 19:17:29 +13:00

10 lines
133 B
PHP

<?php
interface MigratableObject
{
/**
* Migrate the object up to the current version.
*/
public function up();
}