8

我有一个 CodeIgniter 应用程序,我刚刚了解了迁移。这听起来很有用,我想开始使用它。但是我已经有一个相当复杂的数据库设置。有人可以建议一种合理的方法来从我的 MYSQL .sql 模式文件创建可靠的初始迁移吗?

用 dbforge 手动重新创建整个数据库似乎有些过分,但也许这就是我应该做的。

4

3 回答 3

10

回复有点晚,但我破解了一个快速库,它应该从您当前的数据库中为您生成基本迁移文件。它仍然是测试版,但适用于我的系统 40 个表+

https://github.com/liaan/codeigniter_migration_base_generation

大号:

于 2013-06-27T21:33:14.857 回答
0

我手动处理 SQL 文件,然后我发现了 Jamie Rumbelow 的模式库。它使模式操作比 DBForge 更易于管理,但仍需要手动输入。

https://github.com/jamierumbelow/codeigniter-schema

有人提出了他的基本模型和模式库的混搭,它使原型设计更快

https://github.com/williamknauss/schema_base_model_magic

这允许您自动化 CRUD 模型操作和模式

于 2013-03-13T10:02:56.900 回答
0

访问https://github.com/fastworkx/ci_migrations_generator

你会得到类似applications/migration/001_create_base.php的东西。

public function up() {

    ## Create Table sis_customer
    $this->dbforge->add_field(array(
        'id' => array(
            'type' => 'VARCHAR',
            'constraint' => 40,
            'null' => FALSE,

        ),
        'ip_address' => array(
            'type' => 'VARCHAR',
            'constraint' => 45,
            'null' => FALSE,

        ),
        'timestamp' => array(
            'type' => 'INT',
            'unsigned' => TRUE,
            'null' => FALSE,
            'default' => '0',

        ),
        'data' => array(
            'type' => 'BLOB',
            'null' => FALSE,

        ),
        '`datetime_reg` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ',
    ));

    $this->dbforge->create_table("sessions", TRUE);
    $this->db->query('ALTER TABLE  `sessions` ENGINE = InnoDB');
    ));


public function down()  {

    ### Drop table sessions ##
    $this->dbforge->drop_table("sessions", TRUE);
}
于 2019-01-24T21:51:44.463 回答