Sha256: 60e51386d5fafa7268eeae26ad8b5ec54c7a112095795b85018e85e088729f37
Contents?: true
Size: 540 Bytes
Versions: 45
Compression:
Stored size: 540 Bytes
Contents
class CreateBatchObjects < ActiveRecord::Migration def change unless table_exists?(:batch_objects) create_table :batch_objects do |t| t.integer "batch_id" t.string "identifier" t.string "model" t.string "label" t.string "pid" t.datetime "created_at" t.datetime "updated_at" t.string "type" t.boolean "verified", default: false end add_index "batch_objects", ["verified"], name: "index_batch_objects_on_verified" end end end
Version data entries
45 entries across 45 versions & 1 rubygems