Files
btrc-hub/backend/db/migrate/20250520152740_remove_thumbnail_from_posts.rb
2025-05-21 01:16:40 +09:00

6 lines
131 B
Ruby

class RemoveThumbnailFromPosts < ActiveRecord::Migration[8.0]
def change
remove_column :posts, :thumbnail, :string
end
end