Sha256: 588596e9ed351071205b188b81d6ef491448cb9b49b3f7e04f4476c224fb8047
Contents?: true
Size: 492 Bytes
Versions: 45
Compression:
Stored size: 492 Bytes
Contents
class CreateBatchObjectDatastreams < ActiveRecord::Migration def change unless table_exists?(:batch_object_datastreams) create_table :batch_object_datastreams do |t| t.integer "batch_object_id" t.string "operation" t.string "name" t.text "payload" t.string "payload_type" t.datetime "created_at" t.datetime "updated_at" t.string "checksum" t.string "checksum_type" end end end end
Version data entries
45 entries across 45 versions & 1 rubygems