Sha256: cb3d1ab7f8a2b0a246191645cca1664e3cdd80b76b13417797737d6fe1ea73e7

Contents?: true

Size: 428 Bytes

Versions: 6

Compression:

Stored size: 428 Bytes

Contents

class EventAgendaSections < ActiveRecord::Migration
  def change
    remove_column :droom_agenda_sections, :event_id
    rename_table :droom_agenda_sections, :droom_categories
    rename_column :droom_document_attachments, :agenda_section_id, :category_id
    create_table :droom_agenda_categories do |t|
      t.integer :event_id
      t.integer :category_id
      t.integer :created_by_id
      t.timestamps
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
droom-0.5.3 db/migrate/20121009145944_event_agenda_sections.rb
droom-0.4.3 db/migrate/20121009145944_event_agenda_sections.rb
droom-0.4.2 db/migrate/20121009145944_event_agenda_sections.rb
droom-0.4.1 db/migrate/20121009145944_event_agenda_sections.rb
droom-0.2.1 db/migrate/20121009145944_event_agenda_sections.rb
droom-0.0.1 db/migrate/20121009145944_event_agenda_sections.rb