找不到版本号为:1 的迁移

No migration could be found with the version number: 1

我尝试按照 youtube here 上关于在 codeigniter 中创建迁移的 codeigniter 教程进行操作。但是,我得到了错误

No migration could be found with the version number: 1

我已经设置了 $config['migration_version'] = 1;在 Application/Config/migration.php 和我用于创建用户的迁移文件 table

Application/migrations/001_Create_User.php

   <?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Migration_Create_Users extends CI_Migration {

/*
up function is for creating and alert table
*/
        public function up()
        {
                $this->dbforge->add_field(array(
                        'id' => array(
                                'type' => 'INT',
                                'constraint' => 11,
                                'unsigned' => TRUE,
                                'auto_increment' => TRUE
                        ),
                        'email' => array(
                                'type' => 'VARCHAR',
                                'constraint' => '128',
                        ),
                        'password' => array(
                                'type' => 'VARCHAR',
                                'constraint' => '100',
                        ),
                ));
                $this->dbforge->add_key('id',TRUE);
                $this->dbforge->create_table('users');
        }

/*
down function for rollback table
*/
        public function down()
        {
                $this->dbforge->drop_table('users');
        }
}
?>

当我检查我的数据库时,我看到迁移 table 版本总是 0。

请帮帮我,谢谢

在config/migration.php

 /*
    |--------------------------------------------------------------------------
    | Migration Type
    |--------------------------------------------------------------------------
    |
    | Migration file names may be based on a sequential identifier or on
    | a timestamp. Options are:
    |
    |   'sequential' = Default migration naming (001_add_blog.php)
    |   'timestamp'  = Timestamp migration naming (20121031104401_add_blog.php)
    |                  Use timestamp format YYYYMMDDHHIISS.
    |
    | If this configuration value is missing the Migration library defaults
    | to 'sequential' for backward compatibility.
    |
    */
    $config['migration_type'] = 'sequential';