exports.down = function (db, callback) {
  db.runSql('DROP INDEX site_subdomain_unique', (err) => {
    if (err) throw err;
    callback();
  });