ricardochimal / taps

simple database import/export app
MIT License
1.2k stars 140 forks source link

Option to skip schema transfer #72

Closed curzonj closed 13 years ago

curzonj commented 13 years ago

I have had to migrate mysql to oracle several times and previously couldn't do it with taps because the schema just doesn't transfer, I guess sequel can't represent the schema properly to oracle. So I just use rails db:schema:load and then want to use taps to transfer the data. I added a --no-schema flag to enable that.

ricardochimal commented 13 years ago

thanks, it's in master now

kapso commented 12 years ago

I just installed taps (version - 0.3.23) was wondering if this option --no-schema is available in this version?

I am getting this error

ruby-1.9.3-p125/gems/taps-0.3.23/lib/taps/cli.rb:143:in `block in clientoptparse': invalid option: --no-schema (OptionParser::InvalidOption)

Command I used -

taps pull mysql://user:pwd@db_host/db_name http://my_user:my_pass@source_db_host:5000 --no-schema
kapso commented 12 years ago

I got it, skip-schema. Thanks.