aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/schema_generator.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/14434] Remove recursion to simplify is_migration methodMatt Friedman2016-01-271-2/+1
| | | | PHPBB3-14434
* [ticket/14434] Extract migration check to a reusable methodMatt Friedman2016-01-271-7/+5
| | | | PHPBB3-14434
* [ticket/14434] Schema generator should ignore migration helpersMatt Friedman2016-01-261-1/+11
| | | | PHPBB3-14434
* [ticket/13421] Move tools to subdirectoryJoas Schilling2014-12-061-2/+2
| | | | PHPBB3-13421
* [ticket/12715] Cleanup comments in \phpbb\db\*Tristan Darricau2014-06-151-1/+1
| | | | PHPBB3-12715
* Merge pull request #2474 from PayBas/ticket/12561Joas Schilling2014-05-281-1/+19
|\ | | | | | | | | | | | | | | | | | | | | [ticket/12561] Add "after" check to schema_generator for columns_add * PayBas/ticket/12561: [ticket/12561] Reworked tests by nickvergessen [ticket/12561] Added tests for "after last", "after missing" and "empty" [ticket/12561] Add check to see if "after" column actually exists [ticket/12561] Added test for "after" [ticket/12561] Add "after" check to schema_generator for columns_add
| * [ticket/12561] Added tests for "after last", "after missing" and "empty"PayBas2014-05-261-2/+2
| | | | | | | | | | | | Also removed tabs PHPBB3-12561
| * [ticket/12561] Add check to see if "after" column actually existsPayBas2014-05-261-1/+9
| | | | | | | | | | | | If not, just append to the end PHPBB3-12561
| * [ticket/12561] Add "after" check to schema_generator for columns_addPayBas2014-05-191-1/+11
| | | | | | | | PHPBB3-12561
* | [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-5/+7
|/ | | | PHPBB3-12594
* Merge remote-tracking branch 'github-nickvergessen/ticket/12282' into ↵Nils Adermann2014-04-101-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | develop-ascraeus * github-nickvergessen/ticket/12282: [ticket/12282] Update new references [ticket/12282] Update container db mock [ticket/12282] Add new line at EOF of the interface [ticket/12282] Use interface for type hinting [ticket/12282] Use {@inheritDoc} for inherited methods [ticket/12282] Add Interface for DBAL drivers
| * [ticket/12282] Update new referencesJoas Schilling2014-04-011-2/+2
| | | | | | | | PHPBB3-12282
* | [ticket/12362] Throw exception in schema generator on unresolvable dependencyMarc Alexander2014-04-061-0/+36
|/ | | | | | | | Make sure we throw an exception in the schema generator if we come across an unresolvable dependency. Otherwise we'll get stuck in a infinite loop that needs to be cancelled by the user or the maximum execution time. PHPBB3-12362
* [ticket/11459] Pass array with migration class names to schema generatorJoas Schilling2014-03-291-5/+5
| | | | PHPBB3-11459
* [ticket/11459] Update doc blocksJoas Schilling2014-03-291-2/+2
| | | | PHPBB3-11459
* [ticket/11459] Add a migration/schema_generatorJoas Schilling2014-03-291-0/+179
It loops over the migrations and creates the schema from it. PHPBB3-11459