about summary refs log blame commit diff
path: root/db/migrate/20220115164820_create_machines.rb
blob: 6e889fc44fe7631cf820025a232a24188bdb233e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                   
# frozen_string_literal: true

class CreateMachines < ActiveRecord::Migration[7.0]
  def change
    create_table :machines do |t|
      t.string :name
      t.string :edition

      t.timestamps
    end
  end
end