mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
9 lines
278 B
Ruby
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
|