Sha256: dd63b94569bab5db5da62ca848e4ae4dee8d470fc4da48917345df6406949af0

Contents?: true

Size: 799 Bytes

Versions: 1

Compression:

Stored size: 799 Bytes

Contents

# This migration comes from calagator (originally 20081011181519)
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

1 entries across 1 versions & 1 rubygems

Version Path
calagator-0.0.1.pre1 spec/dummy/db/migrate/20150309023321_create_versioned_events.calagator.rb