Fixes #1242: Gii Model generation added dropped table fields in Postgresql

This commit is contained in:
Qiang Xue
2013-11-19 17:25:05 -05:00
parent d2e5f2c507
commit f67ddb17f6

View File

@@ -242,7 +242,6 @@ SQL;
$schemaName = $this->db->quoteValue($table->schemaName);
$sql = <<<SQL
SELECT
current_database() as table_catalog,
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
@@ -289,7 +288,7 @@ FROM
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT join pg_constraint ct on ct.conrelid=c.oid and ct.contype='p'
WHERE
a.attnum > 0
a.attnum > 0 and t.typename != ''
and c.relname = {$tableName}
and d.nspname = {$schemaName}
ORDER BY