Is there a way to create mysql triggers using Activerecord migrations ? Has anybody worked on it share your experience . Thanks
|
|
|
|
|
|
|
There's no magic method allowing you to create a trigger without writing any SQL.
Then you just need to appropriately write your trigger or update it depending of the migration. Edit : I've just found rails_on_pg, which provides some helpers to migrations. |
||
|
