Statuses in task - db field and forms

This commit is contained in:
2025-10-25 17:41:06 +03:00
parent b08468568b
commit ba2aad93af
12 changed files with 86 additions and 13 deletions
@@ -0,0 +1,5 @@
class AddStatusToTasks < ActiveRecord::Migration[8.0]
def change
add_reference :tasks, :status, foreign_key: { to_table: :task_statuses }
end
end