9

如何使用迁移使该financial_year字段独一无二?Codeigniter Dbforge

function up() {

    $this->dbforge->add_field(array(
        'id'    =>  array(
            'type'              =>  'INT',
            'constraint'        =>  11,
            'unsigned'          =>  TRUE,
            'auto_increment'    =>  TRUE
        ),
        'financial_year'    =>  array(
            'type'              =>  'VARCHAR',
            'constraint'        =>  20
        ),
        'start_date'    =>  array(
            'type'              =>  'DATE'
        ),
        'end_date'  =>  array(
            'type'              =>  'DATE'
        ),
        'status'    =>  array(
            'type'              =>  "ENUM",
            'constraint'        =>  "'Active','Inactive'",
            'default'           =>  "Active"
        ),
        'created_on'    =>  array(
            'type'              =>  'TIMESTAMP'
        )
    ));

    $this->dbforge->add_key('id', TRUE); // add `id` as primary key

    $this->dbforge->create_table('financial_year'); // create table schema
}
4

2 回答 2

11

在数据库驱动程序中没有这样做的选项。

要么编写 SQL 来手动创建表,要么(这不是我推荐的)更改 DB_forge.php 和您的数据库驱动程序。(例如 mysql_forge.php)具有唯一键。查看代码我猜你只会有一个名为“unique_keys”的类变量,然后按照“键”和“主键”添加唯一键的代码。

另一种选择是使用所写的dbforge,然后在创建后修改表

$this->db->query('ALTER TABLE `financial_year` ADD UNIQUE INDEX (`financial_year`)');
于 2014-02-22T11:01:26.760 回答
8

这个问题被标记为 CodeIgniter2 - @pgee70 答案是正确的

CodeIgniter3 支持创建唯一字段。只需添加

'unique'            => TRUE

到场

在这种情况下:

'financial_year'    =>  array(
        'type'              =>  'VARCHAR',
        'constraint'        =>  20,
        'unique'            => TRUE
    ),

请参阅 CodeIgniter 用户指南

于 2016-09-24T16:19:38.190 回答