mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
DOCS: Fixed incorrect statement on ID generation
This commit is contained in:
parent
b044fefc91
commit
f69f35eead
@ -68,8 +68,7 @@ or the command is run through [CLI](../cli).
|
||||
When rebuilding the database schema through the [api:SS_ClassLoader] the following additional properties are
|
||||
automatically set on the `DataObject`.
|
||||
|
||||
* ID: Primary Key. When a new record is created, SilverStripe does not use the database's built-in auto-numbering
|
||||
system. Instead, it will generate a new `ID` by adding 1 to the current maximum ID.
|
||||
* ID: Primary Key. This will use the database's built-in auto-numbering system on the base table, and apply the same ID to all subclass tables.
|
||||
* ClassName: An enumeration listing this data-class and all of its subclasses.
|
||||
* Created: A date/time field set to the creation date of this record
|
||||
* LastEdited: A date/time field set to the date this record was last edited through `write()`
|
||||
|
Loading…
Reference in New Issue
Block a user