web/db/migrate/20130624215029_create_operating_systems.rb
author Marcel Hlopko <marcel.hlopko@gmail.com>
Tue, 25 Jun 2013 22:11:10 +0200
changeset 106 eac4098d544d
permissions -rw-r--r--
huge refactoring to better fit what we agreed on

class CreateOperatingSystems < ActiveRecord::Migration
  def change
    create_table :operating_systems do |t|
      t.string :name

      t.timestamps
    end
  end
end