dump icon indicating copy to clipboard operation
dump copied to clipboard

Rails app rake and capistrano tasks to create and restore dumps of database and assets

Results 8 dump issues
Sort by recently updated
recently updated
newest added

I've improved bulk insert performance: remove all indexes before first insert, and create after all inserts to avoid index rebuilds on each insert operation.

I'm using this to migrate a Rails database from SQL Server 2008 to PostgreSQL 9.4. The error `PG::Error: incomplete multibyte character` is about UNICODE. All tables/fields works fines without errors...

I have devise based users table with couple inet fields. ``` create_table "users", force: :cascade do |t| ... t.datetime "last_sign_in_at" t.inet "current_sign_in_ip" t.inet "last_sign_in_ip" t.string "confirmation_token" ... end ``` Then...

I'm following [this](https://github.com/toy/dump#capistrano-integration) for rails 3 section in order to include cap tasks. Then I run `bin/cap staging dump:remote:create`, I recieve message: ``` (Backtrace restricted to imported tasks) cap aborted!...

Allow import of `.tgz` dumps

Oj? Writing/reading object dumps consecutively won't work, but writing/reading lines will. Allow reading marshalled dumps and add option to select serialisation engine (for example if jruby will be used).

``` cap dump:backup:create ``` ``` * executing `dump:backup:create' * executing `dump:remote:create' * executing "cd /home/user/application/current; bundle\\ exec\\ rake -s dump:create PROGRESS_TTY\\=\\+ RAILS_ENV\\=production TAGS\\=remote,backup" servers: ["server"] [server] executing command command finished...