Skip to content

Commit

Permalink
PRESIDECMS-2954 make version number sequence auto incrementing id a b…
Browse files Browse the repository at this point in the history
…igint

No reason for it to be limited to regular int.
  • Loading branch information
DominicWatson committed Oct 16, 2024
1 parent f8330ef commit 2aa62d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/services/presideObjects/VersioningService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ component {
, tablePrefix = "_"
, versioned = false
, properties = {
id = { name="id" , type="numeric", dbtype="int" , control="none", maxLength=0, generator="increment", relationship="none", relatedTo="none", required=true, pk=true }
id = { name="id" , type="numeric", dbtype="bigint" , control="none", maxLength=0, generator="increment", relationship="none", relatedTo="none", required=true, pk=true }
, datecreated = { name="datecreated", type="date" , dbtype="timestamp", control="none", maxLength=0, generator="none" , relationship="none", relatedto="none", required=true }
}
} };
Expand Down

0 comments on commit 2aa62d5

Please sign in to comment.