Use append ().
$this->createTable('some_table', [ 'column_1' => $this->string(64)->notNull()->append('CHARACTER SET utf8 COLLATE utf8_unicode_ci'), 'column_2' => $this->integer()->notNull(), 'column_3' => $this->integer(), ], 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB');
Is this just an example? Because you do not need to set the encoding for one column if it is the same as for the whole table.
source share