Skip to content

Commit 378e877

Browse files
authored
Merge pull request mendix#10519 from dahfjkg/dat/autonumber-increment
Do not claim that autonumbers do not have gaps
2 parents 552bfd8 + 30ace5f commit 378e877

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

content/en/docs/refguide/modeling/domain-model/entities/attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ An attribute has one of the following types:
8888

8989
Type | Possible values | Maps to Mendix data type |
9090
--- | --- | --- |
91-
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is one greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
91+
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
9292
Binary¹ | Binary data. Can only be used for persistable entities as the data is stored in the database. For example an entire file. In most cases you want to use an association to a FileDocument or Image to store file contents. | Binary |
9393
Boolean | True or false. | Boolean |
9494
Date and time | A point in time consisting of a date and a time component accurate up to milliseconds. | Date and time |

content/en/docs/refguide10/modeling/domain-model/entities/attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ An attribute has one of the following types:
8888

8989
Type | Possible values | Maps to Mendix data type |
9090
--- | --- | --- |
91-
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is one greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
91+
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
9292
Binary¹ | Binary data. Can only be used for persistable entities as the data is stored in the database. For example an entire file. In most cases you want to use an association to a FileDocument or Image to store file contents. | Binary |
9393
Boolean | True or false. | Boolean |
9494
Date and time | A point in time consisting of a date and a time component accurate up to milliseconds. | Date and time |

content/en/docs/refguide8/modeling/domain-model/entities/attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ An attribute has one of the following types:
7171

7272
Type | Possible values | Maps to Mendix data type |
7373
--- | --- | --- |
74-
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is one greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
74+
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
7575
Binary¹ | Binary data. Can only be used for persistable entities as the data is stored in the database. For example an entire file. In most cases you want to use an association to a FileDocument or Image to store file contents. | Binary |
7676
Boolean | True or false. | Boolean |
7777
Date and time | A point in time consisting of a date and a time component accurate up to milliseconds. | Date and time |

content/en/docs/refguide9/modeling/domain-model/entities/attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ An attribute has one of the following types:
8888

8989
Type | Possible values | Maps to Mendix data type |
9090
--- | --- | --- |
91-
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is one greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
91+
AutoNumber | A positive or negative whole number.<br/>AutoNumber attributes are automatically generated numbers. The default value of the attribute determines the first number that will be generated. Each created object will have an AutoNumber that is greater than the previous one. AutoNumbers can only be used for persistable entities as the AutoNumber value is computed in the database. | Integer/Long |
9292
Binary¹ | Binary data. Can only be used for persistable entities as the data is stored in the database. For example an entire file. In most cases you want to use an association to a FileDocument or Image to store file contents. | Binary |
9393
Boolean | True or false. | Boolean |
9494
Date and time | A point in time consisting of a date and a time component accurate up to milliseconds. | Date and time |

0 commit comments

Comments
 (0)