diff options
| author | Michael Lüpkes <michael@luepkes.net> | 2015-01-13 11:42:49 +0100 |
|---|---|---|
| committer | Michael Lüpkes <michael@luepkes.net> | 2015-01-13 11:42:49 +0100 |
| commit | 34bbdaeac8c407a97a611cb858617eff3483dbb3 (patch) | |
| tree | c6b76c98f667236e8a23b009c6d4980a58707e22 /app/Schema/Postgres.php | |
| parent | 81f3131bbc4eaabf8f7e2d8825e0ba45a5e1b507 (diff) | |
| parent | 46fd893bd6728031d5f4118f952bf6cce5017965 (diff) | |
Merge remote-tracking branch 'upstream/master' into fguillot/kanboard
Diffstat (limited to 'app/Schema/Postgres.php')
| -rw-r--r-- | app/Schema/Postgres.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php index 9d5aa7a7..12aa5203 100644 --- a/app/Schema/Postgres.php +++ b/app/Schema/Postgres.php @@ -30,7 +30,7 @@ function version_21($pdo) $rq->execute(); $project_ids = $rq->fetchAll(PDO::FETCH_COLUMN, 0); - $rq = $pdo->prepare('UPDATE project_has_users SET is_owner=1 WHERE project_id=?'); + $rq = $pdo->prepare("UPDATE project_has_users SET is_owner='1' WHERE project_id=?"); foreach ($project_ids as $project_id) { $rq->execute(array($project_id)); |
