db: drop normalized_url column from artist_urls.

Unused since 0d480eb832.
This commit is contained in:
evazion
2022-09-20 21:25:43 -05:00
parent 2282fd7ea4
commit b66f84c0c7
2 changed files with 7 additions and 16 deletions

View File

@@ -0,0 +1,5 @@
class DropNormalizedURLFromArtistURLs < ActiveRecord::Migration[7.0]
def change
remove_column :artist_urls, :normalized_url, :text
end
end