mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-17 22:07:55 -05:00
18 lines
397 B
PHP
18 lines
397 B
PHP
<?php
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class MY_Migration extends CI_Migration {
|
|
|
|
public function is_latest()
|
|
{
|
|
$migrations = $this->find_migrations();
|
|
$last_migration = basename(end($migrations));
|
|
|
|
$last_version = $this->_get_migration_number($last_migration);
|
|
$current_version = $this->_get_version();
|
|
|
|
return $last_version == $current_version;
|
|
}
|
|
|
|
} |