1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

[feature/migrations] Return schema changes in database update style array

Returning the set of schema changes allows potentially aggregating to generate
the overall install schema automatically from a set of migrations

PHPBB3-9737
This commit is contained in:
Nils Adermann
2012-10-25 12:26:44 -07:00
committed by Nathan Guse
parent d304b6449d
commit 8645321f40
3 changed files with 16 additions and 4 deletions

View File

@@ -52,12 +52,13 @@ class phpbb_db_migration
}
/**
* Updates the database schema
* Updates the database schema by providing a set of change instructions
*
* @return null
* @return array
*/
function update_schema()
{
return array();
}
/**