Project

General

Profile

Download (395 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateOperatingsystems < ActiveRecord::Migration
def up
create_table :operatingsystems do |t|
t.string :major, :limit => 5, :default => "", :null => false
t.string :name, :limit => 64
t.string :minor, :limit => 16
t.string :nameindicator, :limit => 3

t.timestamps null: true
end
end

def down
drop_table :operatingsystems
end
end
(7-7/352)