Project

General

Profile

Download (219 Bytes) Statistics
| Branch: | Tag: | Revision:
class AllowNullValuesOnFactValue < ActiveRecord::Migration
def up
change_column :fact_values, :value, :text, :null => true
end

def down
change_column :fact_values, :value, :text, :null => false
end
end
(166-166/282)