aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'exreaction/ticket/11350' into developIgor Wiedler2013-02-071-1/+1
|\ | | | | | | | | * exreaction/ticket/11350: [ticket/11350] Do not pass $db by reference; typehint phpbb_db_driver
| * [ticket/11350] Do not pass $db by reference; typehint phpbb_db_driverNathaniel Guse2013-02-061-1/+1
| | | | | | | | PHPBB3-11350
* | Merge remote-tracking branch 'EXreaction/feature/migrations' into developDavid King2013-02-068-0/+2338
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * EXreaction/feature/migrations: (48 commits) [feature/migrations] Remove default values from necessary parameters [feature/migrations] Revert unrelated changes to functions.php [ticket/9737] Fix some comments [ticket/9737] Fix a few minor things in migrations [feature/migrations] Make sure migration data not done before running data step [feature/migrations] Function to populate the migrations table (for install) [feature/migrations] Function effectively_installed() in migrations [feature/migrations] Make load_migrations recursive (optionally) [feature/migrations] Make the test depends_on methods static [feature/migrations] Make depends_on static to call it without dependencies [feature/migrations] install/database_update_migrations.php [feature/migrations] Move test.php -> install/database_update_migrations.php [feature/migrations] Store depends on in the database (serialized) [feature/migrations] Revert method completed [feature/migrations] Basic reverting test [feature/migrations] Test for calling a step multiple times [feature/migrations] Creating revert method to attempt reverting a migration [feature/migrations] Some comments in db_tools [feature/migrations] Reverse data functionality [feature/migrations] Comment ... Conflicts: phpBB/install/schemas/firebird_schema.sql phpBB/install/schemas/mssql_schema.sql phpBB/install/schemas/mysql_40_schema.sql phpBB/install/schemas/mysql_41_schema.sql phpBB/install/schemas/oracle_schema.sql phpBB/install/schemas/postgres_schema.sql phpBB/install/schemas/sqlite_schema.sql
| * [feature/migrations] Remove default values from necessary parametersNathaniel Guse2013-02-043-50/+61
| | | | | | | | | | | | Clean up some comments PHPBB3-9737
| * [ticket/9737] Fix some commentsNathaniel Guse2013-01-231-2/+2
| | | | | | | | PHPBB3-9737
| * [ticket/9737] Fix a few minor things in migrationsNathaniel Guse2013-01-222-4/+9
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Make sure migration data not done before running data stepNathan Guse2013-01-131-1/+1
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Function to populate the migrations table (for install)Nathan Guse2013-01-131-0/+36
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Function effectively_installed() in migrationsNathan Guse2013-01-132-3/+32
| | | | | | | | | | | | | | | | | | | | | | | | Allows you to check if the migration is effectively installed (entirely optionall) This function is intended to help moving to migrations from a previous database updater, where some migrations may have been installed already even though they are not yet listed in the migrations table. PHPBB3-9737
| * [feature/migrations] Make load_migrations recursive (optionally)Nathan Guse2013-01-121-3/+14
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Make depends_on static to call it without dependenciesNathan Guse2013-01-101-1/+1
| | | | | | | | PHPBB3-11318
| * [feature/migrations] Store depends on in the database (serialized)Nathan Guse2013-01-101-33/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is required so that when migrations are reverted we can check through all installed migrations and make sure that all dependencies are handled properly and so that we are only required to load the migrations files that could be dependent on the ones installed. I believe in normal proper use the old way might have worked, but in case something happens and an unrelated migration file is installed, but cannot be loaded, this makes sure we do not stop everything unless we absolutely must (one of those files is dependent on something we want to revert). PHPBB3-9737
| * [feature/migrations] Revert method completedNathan Guse2013-01-101-33/+41
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Creating revert method to attempt reverting a migrationNathan Guse2013-01-092-0/+123
| | | | | | | | | | | | This code is in progress PHPBB3-9737
| * [feature/migrations] Some comments in db_toolsNathan Guse2013-01-091-0/+2
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Reverse data functionalityNathan Guse2013-01-095-11/+164
| | | | | | | | | | | | | | | | | | If data step fails, attempt to roll back any previous calls from the migration that failed. Fix some failing tests PHPBB3-9737
| * [feature/migrations] Make sure the path sent to load_migrations is a directoryNathan Guse2013-01-091-0/+5
| | | | | | | | | | | | Prevent a lot++ of errors PHPBB3-9737
| * [feature/migrations] Fix if method (and create a test for it)Nathan Guse2013-01-091-5/+15
| | | | | | | | PHPBB3-9737
| * [feature/migrations] CommentsNathan Guse2013-01-092-12/+28
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Store state properly and send past result to callableNathan Guse2013-01-092-16/+44
| | | | | | | | | | | | Fix return on module add PHPBB3-9737
| * [feature/migrations] Fixing returns of callables and handling data stateNathan Guse2013-01-099-204/+329
| | | | | | | | | | | | Lots of comments and some other miscellaneous fixes. PHPBB3-9737
| * [feature/migrations] Remove migration data (separate PR)Nathan Guse2013-01-0941-2887/+0
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Migrations now somewhat worksNathan Guse2013-01-0924-3256/+600
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Add method and property visibility, use __construct()David King2013-01-091-1/+1
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Update phpbb_db_migrator class for PHP 5.3.3David King2013-01-091-1/+1
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Update phpbb_db_migration class for PHP 5.3.3David King2013-01-091-2/+2
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Move migrator to service containerNathan Guse2013-01-0947-99/+875
| | | | | | | | | | | | | | | | | | | | | | | | Version numbers 3.1 updates Restore database_update.php file to what it was in develop Get first forum to place global announcements in PHPBB3-9737
| * [feature/migrations] Process migration steps and move to PHP5 codeNils Adermann2013-01-092-32/+120
| |
| * [feature/migrations] Remove references as it is now 3.1 codeNathan Guse2013-01-0945-280/+1179
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Change migration data processing to run step by stepNils Adermann2013-01-091-1/+23
| |
| * [feature/migrations] Rename classes, depends onNathan Guse2013-01-0951-347/+3520
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Update 3.0.3-3.0.5 migrations to workNils Adermann2013-01-095-160/+107
| |
| * [feature/migrations] Depend on part2Nathaniel Guse2013-01-091-1/+1
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Use $this->dbNathaniel Guse2013-01-091-8/+8
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Migrations back through 3.0.6Nathaniel Guse2013-01-095-208/+201
| | | | | | | | PHPBB3-9737
| * [feature/migrations] 3.0.8-rc1 migration, fix some callsNathaniel Guse2013-01-093-86/+89
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Some migrations dataNathaniel Guse2013-01-093-43/+63
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Moved database_update info to individual migration classesNils Adermann2013-01-0936-1/+1998
| |
| * [feature/migrations] Standard vars for migrations and run sql with feedbackNils Adermann2013-01-092-7/+62
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Return schema changes in database update style arrayNils Adermann2013-01-092-3/+9
| | | | | | | | | | | | | | Returning the set of schema changes allows potentially aggregating to generate the overall install schema automatically from a set of migrations PHPBB3-9737
| * [feature/migrations] Store start and end time of migrationsNils Adermann2013-01-091-0/+21
| | | | | | | | PHPBB3-9737
| * [feature/migrations] Basic migrations with schema and data changesNils Adermann2013-01-092-0/+306
| | | | | | | | | | | | | | | | The migrator takes care of applying migrations as necessary. RFC: http://area51.phpbb.com/phpBB/viewtopic.php?f=84&t=41337 PHPBB3-9737
* | Merge remote-tracking branch 'remotes/Sajaki/ticket/10854' into developNathan Guse2013-01-151-0/+16
|\ \ | |/ |/| | | | | | | | | # By Sajaki # Via Sajaki * remotes/Sajaki/ticket/10854: [ticket/10854] sql server drop default constraint when dropping column
| * [ticket/10854] sql server drop default constraint when dropping columnSajaki2012-04-281-0/+16
| | | | | | | | | | | | drops default columns with T-SQL before attempting drop column to avoids sql exception. This is a huge annoyance in UMIL scripts running under sql server.
* | [ticket/11305] Check for $cache being null before using it in db drivers.Oleg Pudeyev2013-01-0210-41/+41
| | | | | | | | | | | | | | There is no reason why db drivers must have a cache to work. They query the database, that part works without caches. PHPBB3-11305
* | Merge PR #1130 branch 'EXreaction/ticket/11259' into developOleg Pudeyev2012-12-291-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * EXreaction/ticket/11259: [ticket/11259] htmlspecialchars($phpbb_admin_path) [ticket/11259] adm_relative_path -> phpbb_adm_relative_path [ticket/11259] Also make adm_relative_path available in the container [ticket/11259] Make phpbb_admin_path available everywhere Conflicts: phpBB/install/index.php phpBB/install/install_update.php
| * | [ticket/11259] htmlspecialchars($phpbb_admin_path)Nathan Guse2012-12-101-1/+1
| | | | | | | | | | | | PHPBB3-11259
| * | [ticket/11259] Make phpbb_admin_path available everywhereNathan Guse2012-12-091-2/+2
| | | | | | | | | | | | PHPBB3-11259
* | | [ticket/11037] Eliminate global $db usage in cache drivers.Oleg Pudeyev2012-12-209-9/+9
| | | | | | | | | | | | | | | | | | | | | The only time $db is needed in cache drivers is to navigate the result set in sql_save. Pass it as a parameter in that function. PHPBB3-11037
* | | Merge remote-tracking branch 'upstream/develop' into ticket/11015Oleg Pudeyev2012-12-137-76/+253
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (101 commits) [ticket/10491] Make recreate_database static. [ticket/11088] Pass required objects in as arguments [ticket/11088] Globalize objects in new permission function [ticket/11088] Move permission creation to a function [ticket/11088] Copy a_styles permission for a_extensions [ticket/11088] Remove extraneous word from sentence in comment [ticket/11088] Changed "file extensions" to "attachment extensions" [ticket/11088] Fix the database updater to correctly manipulate the modules [ticket/11088] Put language pack module move below extension module creation [ticket/11088] Untested, progress on update script [ticket/11088] Fix typo (period instead of comma) [ticket/11088] Untested progress for update script [ticket/11088] Added missing comma [ticket/11088] Removed added space [ticket/11088] Move style, extension and language pack management to customise [ticket/11243] Show download all link on all pages of topic with attachments [feature/template-events] Pass arguments in correct order. [feature/template-events] Pass arguments in correct order. [ticket/10491] Install board once per test run. [ticket/11257] Do not require set_name() method to exist ...