Last active
August 29, 2015 14:06
-
-
Save aishek/71c2d81a95d79130b952 to your computer and use it in GitHub Desktop.
gem dump example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# создаём дамп, содержащий только таблицу my_people_texts | |
# | |
$ rake dump TABLES='my_people_texts' ASSETS='' | |
Tables: 100.0% | |
20140918080518.tgz | |
# заливаем дамп на сервер | |
# | |
$ cap dump:upload LIKE='20140918080518' | |
... | |
# восстанавливаем дамп на сервере с опциями | |
# RESTORE_TABLES='my_people_texts' – взять из дампа только содержимое таблицы my_people_texts | |
# RESTORE_SCHEMA=no – не приводить базу в соответствие с db/schema.rb | |
# RESTORE_ASSETS='' – не менять ассеты на сервере | |
# | |
$ cap dump:remote:restore LIKE='20140918080518' RESTORE_TABLES='my_people_texts' RESTORE_SCHEMA=no RESTORE_ASSETS='' | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment