วันจันทร์ที่ 14 กุมภาพันธ์ พ.ศ. 2554

rails 3 : Configuration for PostgreSQL


  1. ติดตั้ง PostgreSQL ใน Rails 3 โดยไปเพิ่มสองบรรทัดใน Gemfile....
    • source 'http://gemcutter.org'
    • gem 'pg', '0.9.0'
  2. หลังจากนั้นใช้คำสั่ง > bundle install
  3. ใส่ config ใน database.yml ประมาณนี้
  4. development:
    adapter: postgresql
    host: localhost
    port: 5432
    username: postgres
    password: xxxxx
    database: pg_development
    schema_search_path: test
    encoding: utf8
    template: template0
  5. ทดสอบ เข้า irb โดยใช้คำสั่ง > rails console

ไม่มีความคิดเห็น: