我有“question_id”,“ELAPSED_TIME”,“allowed_time”和“身份”为字段和接收包含JSON的问题,并将其保存控制器命名报表模型的问题。 (“question_id”不涉及任何我的机型)
到目前为止,没有任何问题。 直到我尝试运行一些测试。 我已经在Rails正在试图加载我的问题的夹具的错误: ActiveRecord::StatementInvalid: SQLite3::ConstraintException: questions.created_at may not be NULL: INSERT INTO "questions
”
这里是我的灯具:
one:
id: 1
question_id: MyString
app: MyString
guid: 1
status: 1
elapsed_time: 1
allowed_time: 1
和我的模型:
class CreateQuestions < ActiveRecord::Migration
def change
create_table :questions do |t|
t.string :app
t.integer :guid
t.string :question_id
t.integer :elapsed_time
t.integer :allowed_time
t.datetime :happened_at
t.integer :status
t.timestamps
end
end
end
任何的想法 ?