Sha256: 9733ebb47306f6af874867c935c814c3aad59019ad5f3fd2675f40d512c1eb10
Contents?: true
Size: 1.06 KB
Versions: 11
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true class CreateVersionedVenues < ActiveRecord::Migration[4.2] # 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
11 entries across 11 versions & 3 rubygems