Sha256: 38d571bb539b3e5c18cf21cd0cdb73d899217916bf76b53e422ec44874cb2580
Contents?: true
Size: 733 Bytes
Versions: 13
Compression:
Stored size: 733 Bytes
Contents
class CreateVersionedEvents < ActiveRecord::Migration # NOTE: This migration's contents have been commented-out because they relied # on the old +acts_as_versioned+ plugin that has since replaced with the # +papertrail+ plugin. def self.up ### Event.create_versioned_table do |t| ### t.string "title" ### t.text "description" ### t.datetime "start_time" ### t.string "url" ### t.datetime "created_at" ### t.datetime "updated_at" ### t.integer "venue_id" ### t.integer "source_id" ### t.integer "duplicate_of_id" ### t.datetime "end_time" ### t.integer "version" ### end end def self.down ### Event.drop_versioned_table end end
Version data entries
13 entries across 13 versions & 2 rubygems