summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/migrate/087_change_projects_description_to_text.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/087_change_projects_description_to_text.rb b/db/migrate/087_change_projects_description_to_text.rb
index b06b0aa1c..132e921b3 100644
--- a/db/migrate/087_change_projects_description_to_text.rb
+++ b/db/migrate/087_change_projects_description_to_text.rb
@@ -1,6 +1,6 @@
class ChangeProjectsDescriptionToText < ActiveRecord::Migration
def self.up
- change_column :projects, :description, :text, :null => true
+ change_column :projects, :description, :text, :null => true, :default => nil
end
def self.down