femslash-city/migrations/007_add_hits_counter.rb

9 lines
135 B
Ruby
Raw Normal View History

Sequel.migration do
up {
DB.add_column :sites, :hits, :integer, default: 0
}
down {
DB.drop_column :sites, :hits
}
end