Exécutez simplement du SQL arbitraire dans vos migrations
migration 1, :create_people_table do
up do
execute 'CREATE TRIGGER ...'
end
down do
execute 'DROP TRIGGER ...'
end
end
Bien sûr, il ne sera pas très portable.
http://rubydoc.info/gems/dm-migrations /1.1.0/DataMapper/Migration:execute