Support for database migration in a gaming environment?

Ruby on Rails has ActiveRecord and migrations for database schema and data migration. Does the playback platform support the same (both schemas and data migration)? What if the NoSQL database is used in the playback platform, does it support all database migrations?

+4
source share
2 answers

Since Play 1.2 there is a built-in solution called evolution . Another approach is to use a database-independent Liquibase plugin.

+3
source

For Play and SQL, in addition to evolution, there seems to be a migrate module.

Differences:

  • When porting, you can run scripts separately from the application that launches
  • Down migration not yet implemented
0
source

All Articles