select count(*) from audit_log;
2652505123
From operational:
select nextval('audit_log_id_seq');
2752134460
If we exepect that the migration won't be run for two weeks, and we expect there to be 5 million rows added per day to the audit log between now and then, we get 14*5 = 70 million. 100 million to be safe. The sequence should be bumped forward 100 million from its current value of 2,752,134,460 giving us 2,852,134,460.
We are adding <300,000 IDs in our fixes, so this should be sufficient.