PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

रेल पर रूबी में sqlite को PostgreSQL में बदलना

पक्का करें कि आपने PostgreSQL इंस्टॉल किया है अपनी मशीन में और pgAdmin नामक एक सहायक टूल जोड़ें , फिर database.yml को अपडेट करें नीचे की तरह फ़ाइल करें

default: &default
  adapter: postgresql
  encoding: unicode
  username: postgres
  password: xxxxx #<-- which you have defiend while installing postgresql
  pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>

development:
  <<: *default
  database: project_development

test:
  <<: *default
  database: project_test

production:
  <<: *default
  database: project_production
  username: username
  password: <%= ENV['PROJECT_DATABASE_PASSWORD'] %>

और मणि पीजी आपके जेमफाइल में उपयोग करता है जैसे gem 'pg', '~> 0.20.0' इस संस्करण के साथ फिर bundle install run चलाएं

rake db:create
rake db:migrate

हरोकू के लिए

heroku run rake db:migrate

और आप rails . का उपयोग कर सकते हैं rake . के बजाय कमांड यदि आपका रेल संस्करण rails > 5.0.0 . है




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PostgreSQL में क्वेरी कैसे लॉग करें

  2. PL/pgSQL जाँच कर रहा है कि क्या कोई पंक्ति मौजूद है

  3. क्या एक बंद पंक्ति [पोस्टग्रेज में] अभी भी पढ़ी जा सकती है?

  4. postgresql में कॉपी का उपयोग करना?

  5. एकाधिक आईपी पतों के लिए postgresql postgresql.conf सुनो_एड्रेस को कैसे कॉन्फ़िगर करें