1
0
mirror of https://github.com/silverstripe/silverstripe-blog synced 2024-10-22 09:05:58 +00:00

10 lines
133 B
PHP
Raw Normal View History

2015-02-08 20:03:55 +13:00
<?php
2015-11-21 19:17:29 +13:00
interface MigratableObject
{
/**
* Migrate the object up to the current version.
*/
public function up();
2015-02-08 20:03:55 +13:00
}