在将我的一些配置移动到我构建的测试应用程序的数据库中的过程中,我遇到了一个非常奇怪的问题。每当我尝试在表中创建新记录时都会生成错误。该错误表示由于 ID 列(模型中的 DataMapper Serial)为空,SQL 查询失败。此表的架构和用于创建新行的代码在我所做的更改中没有被修改。
sinatra.error
#<DataObjects::IntegrityError: transactions.id may not be NULL (code: 19, sql state: , query: INSERT INTO "transactions" ("uuid", "oid", "store", "txndatetime", "chargetotal") VALUES ('...', '', '...', '...', '...')
用于创建行的 ruby 语句:
txn = Transaction.create(:uuid => @uuid, :txndatetime => @timestr, :store => store, :chargetotal => params[:subtotal], :oid => params[:oid])
表的型号:
class Transaction
include DataMapper::Resource
property :id, Serial
property :uuid, String, :key => true
property :oid, String
property :store, String
property :txndatetime, String
property :status, String
property :refnumber, String
property :chargetotal, String
property :response_hash, String, :length => 255
property :approval_code, String
property :tdate, String
validates_presence_of :uuid, :store
validates_uniqueness_of :uuid
end