ruby-on-rails – 使用Rails 3的PostgreSQL JSON列类型

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 使用Rails 3的PostgreSQL JSON列类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Rails 3中的以下迁移工作原理:
class CreateUserActions < ActiveRecord::Migration
  def up
    create_table :user_actions do |t|
      t.datetime :time
      t.integer  :user_id
      t.text     :action
      t.column   :details,:json
      t.timestamps
    end
  end

  def down
    drop_table 'user_actions'
  end
end

…但schema.rb现在报告不完整

# Could not dump table "user_actions" because of following StandardError
#   Unknown type 'json' for column 'details'

所以rake db:reset将无法创建user_actions表.

解决方法

从: https://github.com/diogob/activerecord-postgres-hstore只需在application.rb中设置以下内容
config.active_record.schema_format = :sql

现在将使用structure.sql而不是schema.rb来使用rake db:reset或rake db:prepare从头创建数据库,并将特定于PostGres.

原文链接:https://www.f2er.com/ruby/270139.html

猜你在找的Ruby相关文章