Sha256: 754ec5e7f87eae3b99624978b81e0b4caa20e57d92091fa51a78baa7d43816e5
Contents?: true
Size: 495 Bytes
Versions: 7
Compression:
Stored size: 495 Bytes
Contents
# This migration creates the `potential_crufts` table class CreatePotentialCrufts < ActiveRecord::Migration<%= migration_version %> def change create_table :potential_crufts do |t| t.string :owner_name, null: false t.string :method_name, null: false t.string :method_type, null: false t.integer :invocations, null: false, default: 0 t.timestamps t.index :owner_name t.index :method_name t.index %i(owner_name method_name) end end end
Version data entries
7 entries across 7 versions & 1 rubygems