Flesh out work items in the UI
Build and Publish Docker Container / build (push) Successful in 5m43s
Build and Publish Docker Container / build (push) Successful in 5m43s
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user