Skip to content

Instantly share code, notes, and snippets.

Avatar
:octocat:
Aprendiendo Dart + Flutter

Oscar Miguel Amezcua Estrella obelich

:octocat:
Aprendiendo Dart + Flutter
  • Tijuana Baja California
  • Twitter @obelich
View GitHub Profile
@obelich
obelich / rb
Created June 22, 2018 17:51
Elimina la llave foranea de una tabla
View rb
remove_foreign_key :$Table$, name: "$Fk_name$"
remove_index :$Table$, column: :$column_name$
remove_column :$Table$, :$column_name$, :integer
View bash
pg_restore -h localhost -U [User] -W -F t -d [BaseDatos] [Filename].tar
View gist:a1a9562a8e51d7b8745505adc15d2384
ERROR: Phusion Passenger doesn't seem to be running. If you are sure that it is running, then the causes of this problem could be:
1. You customized the instance registry directory using Apache's PassengerInstanceRegistryDir option, Nginx's passenger_instance_registry_dir option, or Phusion Passenger Standalone's --instance-registry-dir command line argument. If so, please set the environment variable PASSENGER_INSTANCE_REGISTRY_DIR to that directory and run passenger-status again.
2. The instance directory has been removed by an operating system background service. Please set a different instance registry directory using Apache's PassengerInstanceRegistryDir option, Nginx's passenger_instance_registry_dir option, or Phusion Passenger Standalone's --instance-registry-dir command line argument.
View bash
scp -r [user]@[domain]:[/directorypath/] [directorylocal]
View bash
bundle exec rake RAILS_ENV=production db:migrate
View bash
git config --global core.editor [editor]
View psql
DROP TABLE [nameTable];
View psql
DROP TABLE [nameTable];
View bash
rails destroy scaffold [nameScaffold]