Skip to content
Snippets Groups Projects
20160130061551_create_systems.rb 214 B
Newer Older
class CreateSystems < ActiveRecord::Migration
  def change
    create_table :systems do |t|
      t.string :hostname
      t.string :os

      t.timestamps null: false
    end
    add_index :systems, :os
  end
end