eBooru/db/migrate/20220203154846_remove_artist_commentaries.rb
Earlopain fc7d84affd
[RuboCop] Enable Style/FrozenStringLiteralComment
This reduces allocations on the posts page by about 5%, from basic testing
2024-02-25 18:15:55 +01:00

13 lines
356 B
Ruby

# frozen_string_literal: true
class RemoveArtistCommentaries < ActiveRecord::Migration[6.1]
def change
remove_column :uploads, :artist_commentary_title
remove_column :uploads, :artist_commentary_desc
remove_column :uploads, :include_artist_commentary
drop_table :artist_commentaries
drop_table :artist_commentary_versions
end
end