neocities/migrations/092_domain_check.rb

10 lines
162 B
Ruby
Raw Permalink Normal View History

2016-09-17 10:02:51 -07:00
Sequel.migration do
up {
DB.add_column :sites, :domain_fail_count, :integer, default: 0
}
down {
DB.drop_column :sites, :domain_fail_count
}
end