CodeIgniter的数据库架构迁移工具

时间:2011-07-13 22:33:36

标签: php codeigniter database-schema

是否有一个很好的工具来管理MySQL模式的更改?可以是独立的,也可以与CodeIgniter框架集成。 我正在使用CakePHP的数据库迁移工具来体验这个想法,所以类似的东西会很棒。

2 个答案:

答案 0 :(得分:1)

其他Doctrine项目中有一个Doctrine migrations项目。

答案 1 :(得分:0)

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

class Migration_Add_blog extends CI_Migration {

    public function up()
    {
        $this->dbforge->add_field(array(
            'blog_id' => array(
                'type' => 'INT',
                'constraint' => 5,
                'unsigned' => TRUE,
                'auto_increment' => TRUE
            ),
            'blog_title' => array(
                'type' => 'VARCHAR',
                'constraint' => '100',
            ),
            'blog_description' => array(
                'type' => 'TEXT',
                'null' => TRUE,
            ),
        ));

        $this->dbforge->create_table('blog');
    }

    public function down()
    {
        $this->dbforge->drop_table('blog');
    }

http://www.codeigniter.com/userguide2/libraries/migration.html

查看