1

codeigniterを使用してコードベースにあるモデルのテーブルを作成する必要があります。

ものをcodeignitorにエクスポートする方法はありますか?

コードベースは持っていますが、データダンプがないので、Railsの移行のような方法を見つける必要があります。

4

1 に答える 1

5

CodeIgniter の Migration と DBForge クラスを使用する

移行

https://www.codeigniter.com/user_guide/libraries/migration.html

DBForge データベース操作

https://www.codeigniter.com/user_guide/database/forge.html

移行のためのユーザーガイドから直接:

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');
}
于 2012-05-10T15:20:35.437 に答える