first commit
This commit is contained in:
30
wp-content/plugins/brizy/admin/migrations/null-migration.php
Normal file
30
wp-content/plugins/brizy/admin/migrations/null-migration.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user