20160621223426_add_barcode_column_to_product.rb 140 B

12345
  1. class AddBarcodeColumnToProduct < ActiveRecord::Migration
  2. def change
  3. add_column :products, :barcode, :string, null: true
  4. end
  5. end