SqlServerTimeoutManager creates a table with id defined as int.
[id] [int] IDENTITY(1,1) NOT NULL
It seems that bigint would be a better choice for id as the table might be used in a production system with many inserts into due messages during many years. I had to make a fork of SqlServerTimeoutManager just to change data type for id.
Hi
SqlServerTimeoutManager creates a table with id defined as int.
[id] [int] IDENTITY(1,1) NOT NULL
It seems that bigint would be a better choice for id as the table might be used in a production system with many inserts into due messages during many years. I had to make a fork of SqlServerTimeoutManager just to change data type for id.