Sha256: df369ec8540b941b6bc36e800ae6294db1be5e2f4635a3e828fba23f92f599bc
Contents?: true
Size: 348 Bytes
Versions: 6
Compression:
Stored size: 348 Bytes
Contents
class CreateProducts < ActiveRecord::Migration def self.up create_table :products do |t| t.string :part t.string :vendor t.string :product t.string :version t.string :update_nr t.string :edition t.string :language t.timestamps end end def self.down drop_table :products end end
Version data entries
6 entries across 6 versions & 1 rubygems