Asset-Tracker/db/migrate/20100820221313_create_softwares.rb

20 lines
353 B
Ruby
Raw Normal View History

2011-06-15 01:08:28 +00:00
class CreateSoftwares < ActiveRecord::Migration
def self.up
create_table :softwares do |t|
t.string :name
t.string :key
t.integer :asset_id
t.date :installed
t.string :installed_by
t.string :modified_by
t.string :note
t.timestamps
end
end
def self.down
drop_table :softwares
end
end