aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20180109144120_create_custom_fields.rb
blob: 49df645c50fdb0eaa5d1bdbe00d7eef480c6853f (plain)
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