Sha256: ed72eb8449e931504a22dce5d8d7726f6d2bf99542111716ceff60f6d126b5d7
Contents?: true
Size: 476 Bytes
Versions: 45
Compression:
Stored size: 476 Bytes
Contents
class CreateBatchObjectAttributes < ActiveRecord::Migration def change unless table_exists?(:batch_object_attributes) create_table :batch_object_attributes do |t| t.integer "batch_object_id" t.string "datastream" t.string "name" t.string "operation" t.text "value", limit: 65535 t.string "value_type" t.datetime "created_at" t.datetime "updated_at" end end end end
Version data entries
45 entries across 45 versions & 1 rubygems