1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20221227141529_add_reservable_to_machine.rb
2022-12-27 16:14:29 +01:00

9 lines
278 B
Ruby

# frozen_string_literal: true
# From this migration, the machines will be able to appear in the list, but without being reservable
class AddReservableToMachine < ActiveRecord::Migration[5.2]
def change
add_column :machines, :reservable, :boolean, default: true
end
end