ectomobile/db/migrate/20220303170801_add_error_to_sensor.rb

8 lines
150 B
Ruby
Raw Normal View History

2022-03-03 17:12:51 +00:00
# frozen_string_literal: true
class AddErrorToSensor < ActiveRecord::Migration[6.1]
def change
add_column :sensors, :error, :integer
end
end