add_columns( Module::TABLE_NOTES, [ 'author_display_name' => 'varchar(250) null comment "Save the author name when the author was deleted." AFTER `author_id`', ] ); } /** * @inheritDoc */ public function down() { $this->drop_columns( Module::TABLE_NOTES, [ 'author_display_name' ] ); } }