From 9eeebfd81582f1a89dd682fa4700d59f3a30d7f8 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 24 Jul 2007 09:35:11 +0000 Subject: [PATCH] --- lib/Doctrine/Export/Sqlite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/Export/Sqlite.php b/lib/Doctrine/Export/Sqlite.php index 5d94408c1..dedeab085 100644 --- a/lib/Doctrine/Export/Sqlite.php +++ b/lib/Doctrine/Export/Sqlite.php @@ -180,7 +180,7 @@ class Doctrine_Export_Sqlite extends Doctrine_Export } $name = $this->conn->quoteIdentifier($name, true); - $sql = 'CREATE TABLE ' . $name . ' (' . $queryFields . ')'; + $sql = 'CREATE TABLE ' . $name . ' (' . $queryFields; if ($check = $this->getCheckDeclaration($fields)) { $sql .= ', ' . $check;