错误:"id"列中的值为空违反非空约束 [英] ERROR: null value in column "id" violates not-null constraint

查看:90
本文介绍了错误:"id"列中的值为空违反非空约束的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是将我的应用程序从 mysql 迁移到了 postgres ,但是当我尝试在特定表中插入记录时,我得到了违反非空约束错误:

I just migrated my app from mysql to postgres but when I try to insert a record in a specific table I get violates not-null constraint error:

ERROR:  null value in column "id" violates not-null constraint DETAIL: Failing row contains (null, 1, 1, null, null, null, 2016-03-09 09:24:12.841891, 2012-12-31 23:00:00, 2012-12-31 23:00:00, null, null, f, null, f, XYZAssignment, null, null, null, null).

********** Error **********

    ERROR: null value in column "id" violates not-null constraint
    SQL state: 23502
    Detail: Failing row contains (null, 1, 1, null, null, null, 2016-03-09 09:24:12.841891, 2012-12-31 23:00:00, 2012-12-31 23:00:00, null, null, f, null, f, XYZAssignment, null, null, null, null).

当我尝试使用 factory_girl 创建记录时:

When I try to create the record using factory_girl:

@assignment = FactoryGirl.create(:assignment)

它建立以下sql查询:

It builds this sql query:

INSERT INTO assignments(
            id, account_id, l_id, viewed_at, accepted_at, declined_at, 
            expires_at, created_at, updated_at, decline_reason, decline_reason_text, 
            promotion, c_checked_at, forwardable, type, f_promo, 
            c_check_successful, c_check_api_result, c_check_human_result)
    VALUES (null, 1, 1, null, null, null, '2016-03-09 09:24:12.841891', '2012-12-31 23:00:00', '2012-12-31 23:00:00', null, null, 'f', null, 'f', 'XYZAssignment', null, null, null, null);

这是分配工厂:

FactoryGirl.define do
  factory :assignment do
    expires_at 24.hours.from_now
    account
    lead
  end
end

这是表格说明:

CREATE TABLE assignments(
  id serial NOT NULL,  account_id integer NOT NULL,  l_id integer NOT NULL,  viewed_at timestamp without time zone,  accepted_at timestamp without time zone,  declined_at timestamp without time zone,  expires_at timestamp without time zone,  created_at timestamp without time zone,  updated_at timestamp without time zone,  decline_reason character varying(16),  decline_reason_text character varying(256),  promotion boolean NOT NULL DEFAULT false,  c_checked_at timestamp without time zone,  forwardable boolean DEFAULT true,  type character varying(64),  f_promo boolean,  c_check_successful boolean,  c_check_api_result character varying(32),  c_check_human_result character varying(32),  CONSTRAINT assignments_pkey PRIMARY KEY (id)
) WITH (
  OIDS=FALSE
);

看起来无法自动增加ID,知道吗?

Looks its not able to auto increment the id, any idea?

推荐答案

您必须在 INSERT 操作中跳过 id :

INSERT INTO assignments(account_id, l_id, ...) 
VALUES
(1, 1, ...)

id 将自动获得下一个序列号,因为它是一个自动递增的字段.

The id will automatically get the next sequence number, since it is an auto-increment field.

这篇关于错误:"id"列中的值为空违反非空约束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆