Reputation: 855
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
Upvotes: 3
Views: 1282
Reputation: 625
In yii2 format
Example: In migration file
$this->addCommentOnColumn('user','role_id','Relation table of role');
Upvotes: 3