search for: makecustomertypeidnotnullforcustom

Displaying 1 result from an estimated 1 matches for "makecustomertypeidnotnullforcustom".

2006 Jul 01
1
Changing column to NOT NULL with migration silently failing.
Hi I''ve created a migration called make_customer_type_id_not_null_for_customers. The migration .rb file looks like this: class MakeCustomerTypeIdNotNullForCustomers < ActiveRecord::Migration def self.up change_column(:customers, :customer_type_id, :integer, { :null => false }) end def self.down change_column(:customers, :customer_type_id, :integer, { :null => true }) end end Running "rake migrate" indicates everything is...