docbrown/db/migrate/20200407090218_remove_unused_columns_from_tweets.rb
rhymes 2c0c06e23f
Remove unused columns from tweets (#7128)
Co-authored-by: Ben Halpern <bendhalpern@gmail.com>
2020-04-07 13:19:19 -04:00

7 lines
180 B
Ruby

class RemoveUnusedColumnsFromTweets < ActiveRecord::Migration[5.2]
def change
safety_assured do
remove_column :tweets, :primary_external_url, :string
end
end
end