Skip to content

Instantly share code, notes, and snippets.

@limjinsun
Last active October 21, 2019 23:51
Show Gist options
  • Select an option

  • Save limjinsun/5362535b7380baccb278c36a9af0e3d3 to your computer and use it in GitHub Desktop.

Select an option

Save limjinsun/5362535b7380baccb278c36a9af0e3d3 to your computer and use it in GitHub Desktop.
Rails Applications

Rails controller explained.

https://medium.com/podiihq/understanding-rails-routes-and-restful-design-a192d64cbbb5

Image Uploading

https://pusher.com/tutorials/photo-sharing-ruby-rails

https://medium.com/@anaharris/how-to-add-image-upload-functionality-to-your-rails-app-9f7fc3f3d042

Rails database relation-ship explained.

https://dev.to/neshaz/everything-there-is-to-know-about-associations-in-rails-52ii

Postgresql

터미널 이용해서 로그인하기

$ psql postgres

Show Databases

$ \d

Show description of user

$ \du

Use database;

$ \c [databasename]

Shew description of table

$ \dt+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment