2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-22 01:47:48 +00:00
moebooru/db/migrate/20120921040720_remove_last_vote_from_posts.rb
2018-03-10 18:15:56 +09:00

10 lines
181 B
Ruby

class RemoveLastVoteFromPosts < ActiveRecord::Migration[5.1]
def up
remove_column :posts, :last_vote
end
def down
raise ActiveRecord::IrreversibleMigration
end
end