20140528193927_create_libraries_table.rb 272 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 class CreateLibrariesTable < ActiveRecord::Migration def self.up create_table :libraries do |t| t.string :name t.string :version t.string :license t.references :software_info end end def self.down drop_table :libraries end end