···4343 id integer primary key autoincrement,
4444 last_time_us integer not null
4545 );
4646+4747+ create table if not exists oplog (
4848+ tid text primary key,
4949+ did text not null,
5050+ repo text not null,
5151+ old_sha text not null,
5252+ new_sha text not null,
5353+ ref text not null
5454+ );
4655 `)
4756 if err != nil {
4857 return nil, err