git-subtree-dir: plugins/redmine_workload git-subtree-split: f94bb00e5eb387a55379714b8f58fb6f35517174
12 lines
284 B
Ruby
12 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateWlNationalHolidays < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :wl_national_holidays do |t|
|
|
t.date :start, null: false
|
|
t.date :end, null: false
|
|
t.string :reason, null: false
|
|
end
|
|
end
|
|
end
|