【发布时间】:2014-05-19 18:44:43
【问题描述】:
所以,我使用的是mysql2psql gem,我得到了以下代码:
mysql:
hostname: localhost
port: 3306
socket: /tmp/mysql.sock
username: root
password: root
database: hello_development
destination:
# if file is given, output goes to file, else postgres
file:
postgres:
hostname: localhost
port: 5432
username: root
password: root
database: hello_development
# if tables is given, only the listed tables will be converted. leave empty to convert all tables.
#tables:
#- table1
#- table2
# if exclude_tables is given, exclude the listed tables from the conversion.
#exclude_tables:
#- table3
#- table4
# if supress_data is true, only the schema definition will be exported/migrated, and not the data
supress_data: false
# if supress_ddl is true, only the data will be exported/imported, and not the schema
supress_ddl: false
# if force_truncate is true, forces a table truncate before table loading
force_truncate: false
不过,我有点困惑,至于如何转换我的所有表格,例如测试和生产也是如此。目前,看起来我只是在转换 hello_development。
请指教!
【问题讨论】:
标签: mysql ruby-on-rails postgresql ruby-on-rails-4