Sometimes you want to change the column name to make it more readable and easier to analyze.
AS clause will fit all your expectations in this field
Read moreCopying data from ssh to local is not that hard:
scp -r admin@servername.com:domains/domain-name.pl/public_html/admin/backups admin/backups
This is how to copy from local to remote:
scp /Downloads/example_file.txt admin@servername.com:domains/domain-name.pl/public_html/admin/backups
You can use "-r" flag to copy full folder. Without this you can copy only one file.
Quick cheatsheet to kill your Rails session on port 3000
kill -9 $(lsof -i tcp:3000 -t)