Open seyfer opened 10 years ago
Add support for COMMENT
ALTER TABLE table CHANGE id_seance id_seance INT(11) NOT NULL COMMENT 'available';
table
id_seance
$this->change_column('table', 'id_seance', array( "type" => 'int', "limit" => '11', "null" => TRUE, 'comment' => "available" ));
Add support for COMMENT
ALTER TABLE
table
CHANGEid_seance
id_seance
INT(11) NOT NULL COMMENT 'available';