db->driverName === 'mysql') { // http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB'; } $this->createTable('{{%transfer}}', [ 'id_transfer' => $this->primaryKey(), 'id_discount' => $this->integer(11) , 'id_currency' => $this->integer(11) , 'id_discount' => $this->integer(11) , 'id_object' => $this->integer(11) , 'status' => $this->smallInteger(), 'type' => $this->smallInteger(), 'item_price' => $this->integer(11), 'count' => $this->integer(11), 'money' => $this->integer(11), 'money_currency' => $this->integer(11), 'rate' => $this->integer(11), 'id_user' => $this->integer(11), 'comment' => $this->string(255), 'created_at' => $this->timestamp()->notNull(), 'updated_at' => $this->timestamp()->notNull(), ], $tableOptions); } public function down() { echo "m150930_140224_add__table__transfer cannot be reverted.\n"; return false; } /* // Use safeUp/safeDown to run migration code within a transaction public function safeUp() { } public function safeDown() { } */ }