7
Wykonuję ENUM pola, a wynikiem jest błąd, gdy używam yii migrate/up
w oknach CMD.Jak wykonać migrację do pola enum yii2
public function up()
{
$tableOptions = null;
if ($this->db->driverName === 'mysql') {
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB';
}
$this->createTable('{{%user_social_media}}', [
'social_media' => $this->ENUM('facebook', 'google', 'twitter', 'github'),
'id' => $this->primaryKey(),
'username' => $this->string(),
'user_id' => $this->integer(11),
'created_at' => $this->integer(11),
'updated_at' => $this->integer(11),
], $tableOptions);
}
Ok rozwiązany dzięki .. – CrashBurn
Następnie oznaczyć go jako sloved, proszę :) –
otwarta dyskusja o niej tylko w przypadku, gdy zmienia się w przyszłości: https://github.com/ yiisoft/yii2/issues/9797 –