Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxlapshin/mysql2postgres
Mysqldump, writing in postgresql format
https://github.com/maxlapshin/mysql2postgres
Last synced: 13 days ago
JSON representation
Mysqldump, writing in postgresql format
- Host: GitHub
- URL: https://github.com/maxlapshin/mysql2postgres
- Owner: maxlapshin
- License: mit
- Created: 2008-12-04T11:46:08.000Z (almost 16 years ago)
- Default Branch: master
- Last Pushed: 2020-08-28T22:29:21.000Z (about 4 years ago)
- Last Synced: 2024-08-01T22:57:43.996Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 206 KB
- Stars: 707
- Watchers: 23
- Forks: 156
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# mysql-to-postgres - MySQL to PostgreSQL Data Translation
[![Build Status](https://travis-ci.org/maxlapshin/mysql2postgres.svg)](https://travis-ci.org/maxlapshin/mysql2postgres)
[![Dependency Status](https://gemnasium.com/maxlapshin/mysql2postgres.svg)](https://gemnasium.com/maxlapshin/mysql2postgres)MRI or jruby supported. The minimum Ruby version supported in `master` branch is `2.1.7`,
and the next release will have the same requirement.With a bit of a modified rails `database.yml` configuration, you can integrate `mysql-to-postgres`into a project.
## Installation
**Currently failing, see #81...**
### Via RubyGems
```sh
gem install mysqltopostgres
```### From source
```sh
git clone https://github.com/maxlapshin/mysql2postgres.git
cd mysql2postgres
bundle install
gem build mysqltopostgres.gemspec
sudo gem install mysqltopostgres-0.3.1.gem
```## Sample Configuration
Configuration is written in [YAML format](http://www.yaml.org/ "YAML Ain't Markup Language")
and passed as the first argument on the command line.```yaml
default: &default
adapter: jdbcpostgresql
encoding: unicode
pool: 4
username: terrapotamus
password: default
host: 127.0.0.1development: &development
<<: *default
database: default_developmenttest: &test
<<: *default
database: default_testproduction: &production
<<: *default
database: default_productionmysql_data_source: &pii
host: localhost
port: 3306
socket: /tmp/mysqld.sock
username: username
password: default
database: awesome_possummysql2psql:
mysql:
<<: *piidestination:
production:
<<: *production
test:
<<: *test
development:
<<: *developmenttables:
- countries
- samples
- universes
- variable_groups
- variables
- sample_variables# If suppress_data is true, only the schema definition will be exported/migrated, and not the data
suppress_data: false# If suppress_ddl is true, only the data will be exported/imported, and not the schema
suppress_ddl: true# If force_truncate is true, forces a table truncate before table loading
force_truncate: falsepreserve_order: true
remove_dump_file: true
dump_file_directory: /tmp
report_status: json # false, json, xml
# If clear_schema is true, the public schema will be recreated before conversion
# The import will fail if both clear_schema and suppress_ddl are true.
clear_schema: false
```Please note that the MySQL connection will be using socket in case the host is not defined (`nil`) or it is `'localhost'`.
## Testing
## License
Licensed under [the MIT license](MIT-LICENSE).