Files
old-holivud2/db/migrate/20200803145912_remove_youtube_uid_from_broadcasts.rb

6 lines
144 B
Ruby
Raw Normal View History

2020-08-03 21:52:04 +00:00
class RemoveYoutubeUidFromBroadcasts < ActiveRecord::Migration[6.0]
def change
remove_column :broadcasts, :youtube_uid, :string
end
end