不知何故,我的架构以这个 id 列结束:
create_table "tables", :id => false, :force => true do |t|
t.integer "id", :null => false
# other fieds
end
这是列上的信息(注意主要是假的):
[4] pry(main)> Table.columns.first
=> #<ActiveRecord::ConnectionAdapters::PostgreSQLColumn:0x007f98d06cc0f8
@coder=nil,
@default=nil,
@limit=nil,
@name="id",
@null=false,
@precision=nil,
@primary=false,
@scale=nil,
@sql_type="integer",
@type=:integer>
因此,每当我尝试保存新记录时,都会出现此错误:
ActiveRecord::StatementInvalid: PG::Error: ERROR: null value in column "id" violates not-null constraint
恢复主键的最佳方法是什么?