There seems to be different philosophies around data migrations. django does
data migrations as part of migration via RunPython operations.
Rails docs show how to interact with Models in a migration. A
thoughtbot post suggests using rake scripts which aligns with our approach, where we use complementary scripts that we just go in and run on staging and production servers.
I guess my question is what your take is on data migration or if youve limited it to only seeding ?