parent
850beb72e1
commit
2a731e8350
31 changed files with 491 additions and 57 deletions
10
db/migrate/20140801103645_create_commercials.rb
Normal file
10
db/migrate/20140801103645_create_commercials.rb
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
class CreateCommercials < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :commercials do |t|
|
||||
t.string :commercial_id
|
||||
t.string :commercial_type
|
||||
t.references :commercialable, polymorphic: true
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
class MoveConferenceMediaToCommercial < ActiveRecord::Migration
|
||||
class TempConference < ActiveRecord::Base
|
||||
self.table_name = 'conferences'
|
||||
end
|
||||
|
||||
class TempCommercial < ActiveRecord::Base
|
||||
self.table_name = 'commercials'
|
||||
attr_accessible :commercial_id, :commercial_type, :commercialable_id, :commercialable_type
|
||||
end
|
||||
|
||||
def change
|
||||
# Move all the settings to the new object
|
||||
TempConference.all.each do |conference|
|
||||
unless TempCommercial.exists?(commercialable_id: conference.id, commercialable_id: 'Conference')
|
||||
unless conference.media_id.blank? || conference.media_type.blank?
|
||||
TempCommercial.create(commercial_id: conference.media_id,
|
||||
commercial_type: conference.media_type,
|
||||
commercialable_id: conference.id,
|
||||
commercialable_type: 'Conference')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# Then remove all the columns
|
||||
remove_column :conferences, :media_id
|
||||
remove_column :conferences, :media_type
|
||||
end
|
||||
end
|
||||
28
db/migrate/20140801170430_move_event_media_to_commercial.rb
Normal file
28
db/migrate/20140801170430_move_event_media_to_commercial.rb
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
class MoveEventMediaToCommercial < ActiveRecord::Migration
|
||||
class TempEvent < ActiveRecord::Base
|
||||
self.table_name = 'events'
|
||||
end
|
||||
|
||||
class TempCommercial < ActiveRecord::Base
|
||||
self.table_name = 'commercials'
|
||||
attr_accessible :commercial_id, :commercial_type, :commercialable_id, :commercialable_type
|
||||
end
|
||||
|
||||
def change
|
||||
# Move all the settings to the new object
|
||||
TempEvent.all.each do |event|
|
||||
unless TempCommercial.exists?(commercialable_id: event.id, commercialable_id: 'Conference')
|
||||
unless event.media_id.blank? || event.media_type.blank?
|
||||
TempCommercial.create(commercial_id: event.media_id,
|
||||
commercial_type: event.media_type,
|
||||
commercialable_id: event.id,
|
||||
commercialable_type: 'Event')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# Then remove all the columns
|
||||
remove_column :events, :media_id
|
||||
remove_column :events, :media_type
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue