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