Sha256: 6d077d811e4ccda6682bf53140e9e48256eefee7e602e88f0a1a8706d0b40ec0
Contents?: true
Size: 410 Bytes
Versions: 24
Compression:
Stored size: 410 Bytes
Contents
class CreateBatchObjectRoles < ActiveRecord::Migration def change unless table_exists?(:batch_object_roles) create_table :batch_object_roles do |t| t.integer "batch_object_id" t.string "operation" t.string "agent" t.string "role_type" t.string "role_scope" t.datetime "created_at" t.datetime "updated_at" end end end end
Version data entries
24 entries across 24 versions & 1 rubygems