Flesh out work items in the UI
Build and Publish Docker Container / build (push) Successful in 5m43s

This commit is contained in:
2023-10-08 16:06:07 +01:00
parent f9f4762450
commit c8b688ce57
14 changed files with 123 additions and 36 deletions
@@ -0,0 +1,6 @@
class RenameWorkItemColumns < ActiveRecord::Migration[7.1]
def change
rename_column :work_items, :start_time, :available_from
rename_column :work_items, :due_date, :due_at
end
end
@@ -0,0 +1,5 @@
class AddCompletionTimeToWorkItem < ActiveRecord::Migration[7.1]
def change
add_column :work_items, :completed_at, :datetime
end
end