Currently `migration` table uses unsigned INT for date in the field `apply_time`. Which will overflow in the year of 2038 and will break support. Possible solutions: 1) change to DATETIME, imho the better solution 2) make it unsigned INT, which will extend support to the year 2106 3) make it (unsigned) BIG INT, which will also extend support to the year far beyond