Skip to content

Instantly share code, notes, and snippets.

@trevorrjohn
trevorrjohn / foo.scss
Last active November 11, 2019 18:31 — forked from theck01/foo.scss
.relationship-list-item a {
text-decoration: none !important;
}
.relationship-list-item:hover {
border-left: 5px solid lighten($secondary-color, 15%);
}
.relationship-list-item:hover .relationship-list-icon {
background: lighten($secondary-color, 15%);
1) backup production database:
heroku pgbackups:capture --expire --remote production
2) obtain url string to backup from step 1:
heroku pgbackups:url --app production_app_name --remote production_app_branch_name
3) transfer backup from production to staging app:
heroku pgbackups:restore DATABASE 'production_app_backup_url_string_from_step_2' --app production_app_name --app staging_app_name --confirm staging_app_name