Make the current_activity field in IDF_Project nullable and fix

a problem in the migration 25's down method (issue 800)
This commit is contained in:
Thomas Keller
2012-05-15 22:38:27 +02:00
parent 6bb886b92a
commit 831439120c
5 changed files with 60 additions and 8 deletions

View File

@@ -105,6 +105,8 @@ class IDF_Project extends Pluf_Model
'type' => 'Pluf_DB_Field_Foreignkey',
'model' => 'IDF_ProjectActivity',
'blank' => true,
'is_null' => true,
'default' => null,
'verbose' => __('current project activity'),
),
);