PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Devo eliminare il campo ID predefinito quando utilizzo una chiave primaria di stringa in Rails / Postgres?

Secondo questo post, dovrebbe risolvere il problema:

class CreateEmployees < ActiveRecord::Migration
  def change
    create_table :employees, {:id => false} do |t|
      t.string :employment_id, :unique => true
      etc...
    end
  end
  execute "ALTER TABLE employees ADD PRIMARY KEY (employment_id);"
end

Anche nel tuo modello:

class Employee < ActiveRecord::Base
  set_primary_key :employment_id
  ...
end