femslash-city/migrations/028_remove_comment_like_site_id.rb

10 lines
146 B
Ruby
Raw Permalink Normal View History

Sequel.migration do
up {
DB.drop_column :comment_likes, :site_id
}
down {
DB.add_column :comment_likes, :site_id, :integer
}
end