Implement projected time
Some checks failed
CI / scan_ruby (push) Successful in 16s
CI / scan_js (push) Successful in 13s
CI / lint (push) Successful in 13s
CI / test (push) Failing after 35s

This commit is contained in:
sto
2025-11-14 12:13:09 +01:00
parent f91145637f
commit b88460ae71
16 changed files with 114 additions and 48 deletions

View File

@@ -0,0 +1,5 @@
class AddProjectedTimeToCompletion < ActiveRecord::Migration[8.0]
def change
add_column :completions, :projected_time, :integer
end
end

View File

@@ -0,0 +1,5 @@
class AddCompletionToOffline < ActiveRecord::Migration[8.0]
def change
add_reference :offlines, :completion, foreign_key: true
end
end