Sha256: 146241ac0af5d8d845c44f953085de08317919cfa5a88deb9cfb06cc3d3505fa

Contents?: true

Size: 515 Bytes

Versions: 9

Compression:

Stored size: 515 Bytes

Contents

# frozen_string_literal: true

class AddRruleToEvents < ActiveRecord::Migration[4.2]
  # NOTE: Some of this migration's contents have been commented-out because
  # they used tables created for the old +acts_as_versioned+ plugin that has
  # since replaced with the +papertrail+ plugin.

  def self.up
    add_column :events, :rrule, :string
    ###     add_column :event_versions, :rrule, :string
  end

  def self.down
    remove_column :events, :rrule
    ###     remove_column :event_versions, :rrule
  end
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
koalagator-3.0.0 db/migrate/20081115190515_add_rrule_to_events.rb
koalagator-2.1.1 db/migrate/20081115190515_add_rrule_to_events.rb
koalagator-2.1.0 db/migrate/20081115190515_add_rrule_to_events.rb
koalagator-2.0.0 db/migrate/20081115190515_add_rrule_to_events.rb
calagator2-2.1.1 db/migrate/20081115190515_add_rrule_to_events.rb
calagator2-2.1.0 db/migrate/20081115190515_add_rrule_to_events.rb
calagator2-2.0.0 db/migrate/20081115190515_add_rrule_to_events.rb
calagator-2.0.0.pre.1 db/migrate/20081115190515_add_rrule_to_events.rb
calagator-2.0.0.pre.0 db/migrate/20081115190515_add_rrule_to_events.rb