Can anyone help me add the foreign key and codeigniter migration database? This is the code:
public function up() { $this->dbforge->add_field(array( 'ID_PELAYANAN' => array( 'type' => 'INT', 'constraint' => 50, 'auto_increment' => TRUE ), 'THBLMUT' => array( 'type' => 'VARCHAR', 'constraint' => '6', ), 'ID_DIST' => array( 'type' => 'VARCHAR', 'constraint' => '2', ), 'ID_AREA' => array( 'type' => 'VARCHAR', 'constraint' => '5', ), 'ID_RAYON' => array( 'type' => 'VARCHAR', 'constraint' => '5', ), 'N_RAYON' => array( 'type' => 'CHAR', 'constraint' => '70', ), )); $this->dbforge->add_key('ID_PELAYANAN', TRUE); $this->dbforge->create_table('pelayanan'); } public function down() { $this->dbforge->drop_table('pelayanan'); } }
I want to make 'ID_AREA', 'ID_RAYON' as the Forein Key in this table. How can i solve this?
source share