20160419170717_add_point_sale_id_column_to_user.rb 141 B

12345
  1. class AddPointSaleIdColumnToUser < ActiveRecord::Migration
  2. def change
  3. add_column :users, :pointsale_id, :integer, null: true
  4. end
  5. end