How can I add comment for specific SQL-table in Yii2 migration?
SQL code:
ALTER TABLE
my_table
COMMENT 'Hello World'
I wand to do in within a migration in ORM way
Currently there is no such functionality in Yii 2 migrations.
You have to write it in plain SQL via execute() method:
$this->execute("ALTER TABLE my_table COMMENT 'Hello World'");
In yii2 format
Example: In migration file