I made an app in Ruby on Rails and now I want to get it hosted. However, they require that I use MySQL and I set it up using sqLite3. Is there any way to convert it to use MySQL?
feedback
|
Step 0To be safe, I recommend experimenting a bit with this technique in a virtual machine. Save yourself a bunch of heartache and build a virtual machine, check out your code, and have a safe playground that you can throw away if tragedy strikes. Step 1Make a backup copy of your database.yml file. (from your application root)
Step 2Make a backup copy of your data For Rails 3, install the YAML DB gem: https://github.com/ludicast/yaml_db For Rails 2.x install the YAML DB plugin:
Run the dump task
Step 3Update your config/database.yml file. You will find entries like
Change them to
Be sure to update the values surrounded by asterix as appropriate for your platform! The socket value is only good for Mac OSX using MacPorts. Most flavors of linux do not require this value. Step 5If you have some errors in the following step, you might have to install the mysql gem:
Have rake create your database
Step 6Use YamlDb to reload your data into MySql
| |||||||||||
feedback
|
|
As long as you have not written any SQL statements that run in sqlLite3 and not MySQL (which you won't have if all your database access is via ActiveRecord and ActiveRecord migrations) then all you need to do is change the database adapter in your database.yml config file. | |||||||||
feedback
|
|
Check Taps. I've successfully converted a Mysql database to Postgres with it --it should support SQLite. | |||||||
feedback
|
|
If there's no data to migrate, simply update database.yml and run 'rake db:schema:load' in the new environment. (NOT db:migrate which should only be used for incremental migrations!) | |||
|
feedback
|