Farmbot-Web-App/db/migrate/20171003144428_add_last_saw_mq_to_devices.rb

7 lines
148 B
Ruby
Raw Normal View History

2017-10-03 09:04:14 -06:00
class AddLastSawMqToDevices < ActiveRecord::Migration[5.1]
safety_assured
2017-10-03 09:04:14 -06:00
def change
add_column :devices, :last_saw_mq, :datetime
end
end