mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Cleared all the offenses for Style/SpaceAroundOperators Added a description for the Style/SpaceAroundOperators Rubocop.
11 lines
285 B
Ruby
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
|