Sha256: 75de214b969cffd9b7160dd5850756de227d35c7d778044ab3c12c2f50a82fdc
Contents?: true
Size: 431 Bytes
Versions: 45
Compression:
Stored size: 431 Bytes
Contents
class CreateBatchObjectRelationships < ActiveRecord::Migration def change unless table_exists?(:batch_object_relationships) create_table :batch_object_relationships do |t| t.integer "batch_object_id" t.string "name" t.string "operation" t.string "object" t.string "object_type" t.datetime "created_at" t.datetime "updated_at" end end end end
Version data entries
45 entries across 45 versions & 1 rubygems