artist urls: make normalized_url nullable.

Make the normalized_url column nullable in preparation for dropping it.
This commit is contained in:
evazion
2022-04-02 23:30:08 -05:00
parent ca8083465b
commit 86e9cf1d05
2 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class MakeNormalizedURLNullableOnArtistURLs < ActiveRecord::Migration[7.0]
def change
change_column_null :artist_urls, :normalized_url, true
end
end