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:
parent
6bb886b92a
commit
831439120c
18
NEWS.mdtext
18
NEWS.mdtext
@ -2,15 +2,17 @@
|
|||||||
|
|
||||||
## Bugfixes
|
## Bugfixes
|
||||||
|
|
||||||
- If an anonymous or authenticated user had no access
|
- If an anonymous or authenticated user had no access to any project in a
|
||||||
to any project in a forge, all projects were listed
|
forge, all projects were listed for him (but still no one was actually
|
||||||
for him (but still no one was actually accessible).
|
accessible). This has been fixed.
|
||||||
This has been fixed.
|
|
||||||
|
|
||||||
- Fixed a problem where the SyncGit plugin doesn't properly
|
- Fixed a problem where the SyncGit plugin doesn't properly updates the
|
||||||
updates the authorized_keys file when the public key
|
authorized_keys file when the public key data contained slashes (thanks
|
||||||
data contained slashes (thanks to Simon Gareste for the
|
to Simon Gareste for the fix!)
|
||||||
fix!)
|
|
||||||
|
- Under PostgreSQL new projects could not be created due to a failing
|
||||||
|
foreign key relation. Adding project tags was not possible for a similar
|
||||||
|
reason. This has been fixed (issue 800, continued).
|
||||||
|
|
||||||
# InDefero 1.3.2 - Wed May 09 20:05 2012 UTC
|
# InDefero 1.3.2 - Wed May 09 20:05 2012 UTC
|
||||||
|
|
||||||
|
@ -37,6 +37,7 @@ function IDF_Migrations_25NullableProjectInTag_up($params=null)
|
|||||||
|
|
||||||
function IDF_Migrations_25NullableProjectInTag_down($params=null)
|
function IDF_Migrations_25NullableProjectInTag_down($params=null)
|
||||||
{
|
{
|
||||||
|
$engine = Pluf::f('db_engine');
|
||||||
$db = Pluf::db();
|
$db = Pluf::db();
|
||||||
if ($engine === 'PostgreSQL') {
|
if ($engine === 'PostgreSQL') {
|
||||||
$db->execute('ALTER TABLE '.$db->pfx.'idf_tags ALTER COLUMN project SET NOT NULL');
|
$db->execute('ALTER TABLE '.$db->pfx.'idf_tags ALTER COLUMN project SET NOT NULL');
|
||||||
|
46
src/IDF/Migrations/26NullableActivityInProject.php
Normal file
46
src/IDF/Migrations/26NullableActivityInProject.php
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
<?php
|
||||||
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||||
|
/*
|
||||||
|
# ***** BEGIN LICENSE BLOCK *****
|
||||||
|
# This file is part of InDefero, an open source project management application.
|
||||||
|
# Copyright (C) 2008-2012 Céondo Ltd and contributors.
|
||||||
|
#
|
||||||
|
# InDefero is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# InDefero is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
#
|
||||||
|
# ***** END LICENSE BLOCK ***** */
|
||||||
|
|
||||||
|
function IDF_Migrations_26NullableActivityInProject_up($params=null)
|
||||||
|
{
|
||||||
|
$engine = Pluf::f('db_engine');
|
||||||
|
$db = Pluf::db();
|
||||||
|
if ($engine === 'PostgreSQL') {
|
||||||
|
$db->execute('ALTER TABLE '.$db->pfx.'idf_projects ALTER COLUMN current_activity DROP NOT NULL');
|
||||||
|
} else if ($engine === 'MySQL') {
|
||||||
|
$db->execute('ALTER TABLE '.$db->pfx.'idf_projects MODIFY current_activity MEDIUMINT NULL');
|
||||||
|
// this is only needed for non-transactional setups where MySQL set 0 as default value
|
||||||
|
$db->execute('UPDATE '.$db->pfx.'idf_projects SET current_activity=NULL WHERE current_activity=0');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function IDF_Migrations_26NullableActivityInProject_down($params=null)
|
||||||
|
{
|
||||||
|
$engine = Pluf::f('db_engine');
|
||||||
|
$db = Pluf::db();
|
||||||
|
if ($engine === 'PostgreSQL') {
|
||||||
|
$db->execute('ALTER TABLE '.$db->pfx.'idf_projects ALTER COLUMN current_activity SET NOT NULL');
|
||||||
|
} else if ($engine === 'MySQL') {
|
||||||
|
$db->execute('ALTER TABLE '.$db->pfx.'idf_projects MODIFY current_activity MEDIUMINT NOT NULL');
|
||||||
|
}
|
||||||
|
}
|
@ -105,6 +105,8 @@ class IDF_Project extends Pluf_Model
|
|||||||
'type' => 'Pluf_DB_Field_Foreignkey',
|
'type' => 'Pluf_DB_Field_Foreignkey',
|
||||||
'model' => 'IDF_ProjectActivity',
|
'model' => 'IDF_ProjectActivity',
|
||||||
'blank' => true,
|
'blank' => true,
|
||||||
|
'is_null' => true,
|
||||||
|
'default' => null,
|
||||||
'verbose' => __('current project activity'),
|
'verbose' => __('current project activity'),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -50,6 +50,7 @@ class IDF_Tag extends Pluf_Model
|
|||||||
'model' => 'IDF_Project',
|
'model' => 'IDF_Project',
|
||||||
'blank' => true,
|
'blank' => true,
|
||||||
'is_null' => true,
|
'is_null' => true,
|
||||||
|
'default' => null,
|
||||||
'verbose' => __('project'),
|
'verbose' => __('project'),
|
||||||
),
|
),
|
||||||
'class' =>
|
'class' =>
|
||||||
|
Loading…
Reference in New Issue
Block a user