Files
redmine/db/migrate/002_create_wl_user_data.rb
Roman Vaníček 580eedcab2 Squashed 'plugins/redmine_workload/' content from commit f94bb00
git-subtree-dir: plugins/redmine_workload
git-subtree-split: f94bb00e5eb387a55379714b8f58fb6f35517174
2023-03-24 11:34:26 +01:00

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