my ($args) = @_;
my ( $dbh, $out ) = @$args{qw(dbh out)};
$dbh->do(q{ALTER TABLE erm_agreements MODIFY COLUMN license_info mediumtext});
$dbh->do(q{ALTER TABLE erm_agreements MODIFY COLUMN license_info mediumtext DEFUALT NULL COMMENT 'info about the license'});
say_success( $out, "Updated erm_agreements.license_info to mediumtext." );
},
};
-