mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
track when certs are updated
This commit is contained in:
parent
ed44cc5a17
commit
01e721adca
1 changed files with 9 additions and 0 deletions
9
migrations/090_add_cert_updated_at.rb
Normal file
9
migrations/090_add_cert_updated_at.rb
Normal 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
|
Loading…
Add table
Reference in a new issue