track when certs are updated

This commit is contained in:
Kyle Drake 2016-06-27 20:56:46 -07:00
parent ed44cc5a17
commit 01e721adca

View file

@ -0,0 +1,9 @@
Sequel.migration do
up {
DB.add_column :sites, :cert_updated_at, Time
}
down {
DB.drop_column :sites, :cert_updated_at
}
end