about summary refs log tree commit diff
path: root/db/migrate/20210821215754_create_machines.rb
blob: 18cb89cac946ae03d079e6756659d374f9a3ee0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class CreateMachines < ActiveRecord::Migration[6.0]
  def change
    create_table :machines do |t|
      t.string :name
      t.string :edition

      t.timestamps
    end
  end
end