Führen Sie einfach beliebiges SQL in Ihren Migrationen aus
migration 1, :create_people_table do
up do
execute 'CREATE TRIGGER ...'
end
down do
execute 'DROP TRIGGER ...'
end
end
Natürlich wird es nicht allzu tragbar sein.
http://rubydoc.info/gems/dm-migrations /1.1.0/DataMapper/Migration:execute