Skip to content

Commit

Permalink
Fixes the usage of _create_table_if in Postgres forge class
Browse files Browse the repository at this point in the history
  • Loading branch information
gxgpet committed Nov 3, 2023
1 parent d3c610b commit 2fc2d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/database/drivers/postgre/postgre_forge.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function __construct(&$db)

if (version_compare($this->db->version(), '9.0', '>'))
{
$this->create_table_if = 'CREATE TABLE IF NOT EXISTS';
$this->_create_table_if = 'CREATE TABLE IF NOT EXISTS';
}
}

Expand Down

0 comments on commit 2fc2d48

Please sign in to comment.