11 lines
185 B
Ruby
11 lines
185 B
Ruby
class CreateDevices < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :devices do |t|
|
|
t.primary_key :id
|
|
t.string :device_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|