1 2 3 4 5 6 7 8 9 10 11 12 13 14
class CreateCustomFields < ActiveRecord::Migration def change create_table :custom_fields do |t| t.string :code t.string :resource_type t.string :name t.string :field_type t.json :options t.bigint :workgroup_id t.timestamps null: false end end end