addColumn('{{%artbox_comment}}', 'entity', $this->string() ->notNull() ->defaultValue('')); $this->addColumn('{{%artbox_comment}}', 'entity_id', $this->integer() ->notNull() ->defaultValue(1)); } public function down() { $this->dropColumn('{{%artbox_comment}}', 'entity'); $this->dropColumn('{{%artbox_comment}}', 'entity_id'); } }