Sticky.findBySince = function findBySince(date, db) {
  const store = this.objectStore(db);
  const items = [];
  return new Promise((resolve, reject) => {
    const index       = store.index('updated_at');