osem-fcy/db/migrate/20150417050953_add_url_to_commercial.rb
gotens1211 4a9c971ec7 Enable Style/SpaceAroundOperators Rubocop
Cleared all the offenses for Style/SpaceAroundOperators

Added a description for the Style/SpaceAroundOperators Rubocop.
2017-02-05 19:43:00 +05:30

11 lines
285 B
Ruby

class AddUrlToCommercial < ActiveRecord::Migration
class TempCommercial < ActiveRecord::Base
self.table_name = 'commercials'
end
def change
add_column :commercials, :url, :string
# Don't delete commercial_type and commercial_id for backward compatibility
end
end