class AddColumnsIntoCustomers < ActiveRecord::Migration def change add_column :customers, :is_public, :integer, default: 0, null: true end end