Sha256: ce167d5bc8cb584d7ef255893ae75a4cde009601aed3fd9188afc129681db2a1
Contents?: true
Size: 964 Bytes
Versions: 13
Compression:
Stored size: 964 Bytes
Contents
class CreateVersionedVenues < ActiveRecord::Migration # NOTE: This migration's contents have been commented-out because they relied # on the old +acts_as_versioned+ plugin that we've since replaced with the # +papertrail+ plugin. # def self.up ### Venue.create_versioned_table do |t| ### t.string "title" ### t.text "description" ### t.string "address" ### t.string "url" ### t.datetime "created_at" ### t.datetime "updated_at" ### t.string "street_address" ### t.string "locality" ### t.string "region" ### t.string "postal_code" ### t.string "country" ### t.decimal "latitude" ### t.decimal "longitude" ### t.string "email" ### t.string "telephone" ### t.integer "source_id" ### t.integer "duplicate_of_id" ### t.integer "version" ### end end def self.down ### Venue.drop_versioned_table end end
Version data entries
13 entries across 13 versions & 2 rubygems