Files
vault171/db/migrate/20260528181506_add_condition_to_items.rb
David Böhm 9e18b233d9
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
Added condition for items and started with localize
2026-05-28 22:28:13 +02:00

6 lines
154 B
Ruby

class AddConditionToItems < ActiveRecord::Migration[8.1]
def change
add_column :items, :condition, :string, default: "unknown", null: false
end
end