instance method
primary_key
Ruby on Rails 8.0.4
Since v5.2.8.1Signature
primary_key(name, type = :primary_key, **options)
Appends a primary key definition to the table definition. Can be called multiple times, but this is probably not a good idea.
Parameters
-
namereq -
typeopt = :primary_key -
optionskeyrest
Source
# File activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb, line 308
def primary_key(name, type = :primary_key, **options)
column(name, type, **options.merge(primary_key: true))
end
Defined in activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb line 308
· View on GitHub
· Improve this page
· Find usages on GitHub