Doctrine migrations are designed for schema changes, not for inserting data to the database. Although, inserting some initial data to database is useful in some cases.
insert into (artist, title) VALUES ('The Military Wives', 'In My Dreams');
insert into table
update table
?