Top "Dbforge" questions

dbForge is a Database Version Control Software by DevArt.

Codeigniter creating an ENUM field with dbforge

I create a ENUM field, here is my code: $field['test'] = array( 'type' => 'ENUM', 'constraint' => array('a','b',…

php mysql codeigniter enums dbforge
Codeigniter showing error: No database selected

I am using Codeigniter's DBForge class to create a database and table within that database. Here is code: if ($this-&…

mysql codeigniter dbforge
Create Unique field in Codeigniter DBForge Migration

How can I make the financial_year field as unique using Codeigniter Dbforge migration? function up() { $this->dbforge->…

codeigniter migration codeigniter-2 dbforge