30 lines
428 B
PHP
30 lines
428 B
PHP
<?php
|
|
|
|
|
|
class Brizy_Admin_Migrations_NullMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
|
|
|
/**
|
|
* @return int|mixed
|
|
*/
|
|
public function getPriority() {
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* Return the version
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getVersion() {
|
|
return '0.0.1';
|
|
}
|
|
|
|
/**
|
|
* Run this method when upgrading.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function execute() {
|
|
// this is a null migration
|
|
}
|
|
} |