mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
10 lines
121 B
PHP
10 lines
121 B
PHP
|
<?php
|
||
|
|
||
|
interface MigratableObject {
|
||
|
|
||
|
/**
|
||
|
* Migrate the object up to the current version
|
||
|
*/
|
||
|
public function up();
|
||
|
}
|