git-subtree-dir: plugins/redmine_workload git-subtree-split: f94bb00e5eb387a55379714b8f58fb6f35517174
13 lines
374 B
Ruby
13 lines
374 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateWlUserData < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :wl_user_datas do |t|
|
|
t.belongs_to :user, index: true, null: false
|
|
t.float :threshold_lowload_min, null: false
|
|
t.float :threshold_normalload_min, null: false
|
|
t.float :threshold_highload_min, null: false
|
|
end
|
|
end
|
|
end
|