[ticket/11103] Fix effectively installed check

PHPBB3-11103
This commit is contained in:
Nathan Guse 2013-02-28 15:06:52 -06:00
parent 11ca2c15d6
commit 247ecdf11b

View file

@ -11,7 +11,7 @@ class phpbb_db_migration_data_310_notifications extends phpbb_db_migration
{
public function effectively_installed()
{
return false;//!$this->db_tools->sql_table_exists($this->table_prefix . 'notifications');
return $this->db_tools->sql_table_exists($this->table_prefix . 'notifications');
}
static public function depends_on()