wedding-planner/db/migrate/20250908145119_add_progress_to_tables_arrangements.rb
Manuel Bustillo 12174b6f20
Some checks failed
Run unit tests / check-licenses (pull_request) Failing after 1m44s
Run unit tests / rubocop (pull_request) Failing after 1m46s
Run unit tests / copyright_notice (pull_request) Successful in 2m8s
Run unit tests / unit_tests (pull_request) Failing after 3m30s
Run unit tests / build-static-assets (pull_request) Has been skipped
Persist VNS calculation progress whenever an improvement has been made
2025-09-08 22:44:54 +02:00

6 lines
172 B
Ruby

class AddProgressToTablesArrangements < ActiveRecord::Migration[8.0]
def change
add_column :tables_arrangements, :progress, :float, default: 0, null: false
end
end