7
在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表。
不錯!我甚至不知道這是可能的。 – tyler