How to make field enum migration yii2

后端 未结 2 1162
忘掉有多难
忘掉有多难 2021-02-12 18:01

I make field ENUM and the result is error when I use yii migrate/up on CMD windows.

public function up()
{
    $tableOptions = null;
    if ($this-&         


        
2条回答
  •  抹茶落季
    2021-02-12 18:43

    There is no enum() method at the moment since not every DB is supporting ENUM fields. You can do it manually though:

    'social_media' => "ENUM('facebook', 'google', 'twitter', 'github')",
    

    Note: This solution is for Mysql only

    For related Postgresql content visit here

提交回复
热议问题