ectomobile/db/migrate/20211206221925_create_arduinos.rb
2021-12-06 20:01:05 -03:00

13 lines
286 B
Ruby

# frozen_string_literal: true
class CreateArduinos < ActiveRecord::Migration[6.1]
def change
create_table :arduinos, id: :uuid do |t|
t.timestamps
t.uuid :raspberry_id, index: true
t.uuid :transaction_id, index: true
t.integer :local_id
end
end
end