Sha256: 2246dfbd312d20cc97f516f62f723ef4b0b3f1ab0c9e50c593125dd2f1ced342
Contents?: true
Size: 511 Bytes
Versions: 101
Compression:
Stored size: 511 Bytes
Contents
# frozen_string_literal: true # This migration creates the `versions` table, the only schema PT requires. # All other migrations PT provides are optional. class CreateVersions < ActiveRecord::Migration[5.1] def change create_table :versions do |t| t.string :item_type, null: false t.integer :item_id, null: false t.string :event, null: false t.string :whodunnit t.jsonb :object t.datetime :created_at end add_index :versions, [:item_type, :item_id] end end
Version data entries
101 entries across 101 versions & 1 rubygems