about summary refs log blame commit diff
path: root/db/migrate/20210821215754_create_machines.rb
blob: 18cb89cac946ae03d079e6756659d374f9a3ee0f (plain) (tree)
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