我有一个带有以下迁移的表“通知”:
class CreateNotifications < ActiveRecord::Migration
def change
create_table :notifications do |t|
t.integer :id
t.string :from
t.string :to
t.string :subject
t.text :content
t.string :interval_type
t.integer :interval
t.datetime :begin
t.datetime :end
t.timestamps
end
end
end
问题是,当我转到 myapplication/notifications/new 时,我在“内容”字段中看到输入类型 =“文本”而不是文本区域。
解决了