Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [ticket/11459] 3.0.1-RC1 should depend on 3.0.0 migration | Joas Schilling | 2014-03-29 | 1 | -0/+5 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Make 3.1.0-dev migration depend on migrations_table | Joas Schilling | 2014-03-29 | 1 | -0/+1 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Move $supported_dbms to beginning of create schema file | Joas Schilling | 2014-03-29 | 2 | -2/+9 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Fix missing constant CONFIG_TABLE for sql_create_index() | Joas Schilling | 2014-03-29 | 1 | -0/+8 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Fix auth provider test | Joas Schilling | 2014-03-29 | 1 | -1/+1 |
| | | | | | | user_timezone has no default value anymore PHPBB3-11459 | ||||
* | [ticket/11459] Correctly set up the database from schema in unit tests | Joas Schilling | 2014-03-29 | 2 | -4/+21 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Install DB schema from json file | Joas Schilling | 2014-03-29 | 1 | -4/+13 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Clean up a little more | Joas Schilling | 2014-03-29 | 1 | -4/+0 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Do not add table schema to database schema files | Joas Schilling | 2014-03-29 | 9 | -10315/+3329 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Create schema.json from migration files | Joas Schilling | 2014-03-29 | 1 | -0/+4 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Do not take files of extensions into account | Joas Schilling | 2014-03-29 | 1 | -1/+2 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Pass array with migration class names to schema generator | Joas Schilling | 2014-03-29 | 2 | -10/+9 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Refresh schema files | Joas Schilling | 2014-03-29 | 7 | -139/+244 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Remove spaces from the end of lines in MSSQL | Joas Schilling | 2014-03-29 | 1 | -2/+2 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Correctly handle index column length | Joas Schilling | 2014-03-29 | 1 | -4/+21 |
| | | | | | | Code is copied from db\tools::sql_create_index() PHPBB3-11459 | ||||
* | [ticket/11459] Add migration for migrations table | Joas Schilling | 2014-03-29 | 1 | -0/+47 |
| | | | | | | | | This migration will always be skipped on updates, because database_update.php creates the table. But the create schema script requires the migration, so the table is created for new installs. PHPBB3-11459 | ||||
* | [ticket/11459] Update doc blocks | Joas Schilling | 2014-03-29 | 2 | -3/+3 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Remove old schema file | Joas Schilling | 2014-03-29 | 2 | -1233/+0 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Update schema files with new script | Joas Schilling | 2014-03-29 | 8 | -907/+792 |
| | | | | | | The order of some tables and columns was changed PHPBB3-11459 | ||||
* | [ticket/11459] Use new migration/schema_generator to create schema files | Joas Schilling | 2014-03-29 | 1 | -3/+13 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Add Schema from 3.0.0 | Joas Schilling | 2014-03-29 | 1 | -0/+1177 |
| | | | | PHPBB3-11459 | ||||
* | [ticket/11459] Add a migration/schema_generator | Joas Schilling | 2014-03-29 | 1 | -0/+179 |
| | | | | | | It loops over the migrations and creates the schema from it. PHPBB3-11459 | ||||
* | Merge branch 'develop-olympus' into develop-ascraeus | Joas Schilling | 2014-03-29 | 4 | -347/+468 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/9725] Code sniffer fixes [ticket/9725] Do not use deprecated views to remove default constraints [ticket/9725] Move primary key creation to the correct location [ticket/9725] Remove trailing spaces from MSSQL schema [ticket/9725] Create MSSQL primary keys if none exist [ticket/9725] Remove explicit filegroup designations [ticket/9725] Fetch Azure db stats from proper table [ticket/9725] Add dummy indexes for Azure [ticket/9725] Create an Azure SQL compatible Schema Conflicts: phpBB/install/schemas/mssql_schema.sql | ||||
| * | Merge remote-tracking branch 'noxwizard/ticket/naderman/9725' into ↵ | Joas Schilling | 2014-03-29 | 4 | -338/+448 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | develop-olympus * noxwizard/ticket/naderman/9725: [ticket/9725] Code sniffer fixes [ticket/9725] Do not use deprecated views to remove default constraints [ticket/9725] Move primary key creation to the correct location [ticket/9725] Remove trailing spaces from MSSQL schema [ticket/9725] Create MSSQL primary keys if none exist [ticket/9725] Remove explicit filegroup designations [ticket/9725] Fetch Azure db stats from proper table [ticket/9725] Add dummy indexes for Azure [ticket/9725] Create an Azure SQL compatible Schema | ||||
| | * | [ticket/9725] Code sniffer fixes | Patrick Webster | 2014-03-28 | 1 | -4/+4 |
| | | | | | | | | | | | | PHPBB3-9725 | ||||
| | * | [ticket/9725] Do not use deprecated views to remove default constraints | Patrick Webster | 2014-03-28 | 1 | -32/+84 |
| | | | | | | | | | | | | PHPBB3-9725 | ||||
| | * | [ticket/9725] Move primary key creation to the correct location | Patrick Webster | 2014-03-28 | 1 | -9/+9 |
| | | | | | | | | | | | | PHPBB3-9725 | ||||
| | * | [ticket/9725] Remove trailing spaces from MSSQL schema | Patrick Webster | 2014-03-28 | 2 | -174/+174 |
| | | | | | | | | | | | | PHPBB3-9725 | ||||
| | * | [ticket/9725] Create MSSQL primary keys if none exist | Patrick Webster | 2014-03-28 | 1 | -0/+9 |
| | | | | | | | | | | | | PHPBB3-9725 | ||||
| | * | [ticket/9725] Remove explicit filegroup designations | Patrick Webster | 2014-03-28 | 1 | -17/+4 |
| | | | | | | | | | | | | PHPBB3-9725 | ||||
| | * | [ticket/9725] Fetch Azure db stats from proper table | Patrick Webster | 2014-03-28 | 1 | -0/+16 |
| | | | | | | | | | | | | PHPBB3-9725 | ||||
| | * | [ticket/9725] Add dummy indexes for Azure | Henry Sudhof | 2014-03-01 | 2 | -56/+56 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | SQL Azure requires a primary AKA clustered key on every table. This adds a dummy INT column to act as key, avoiding possible duplicate entries. so that these columns can support bigger (speak: huge) tables PHPBB3-9725 | ||||
| | * | [ticket/9725] Create an Azure SQL compatible Schema | Henry Sudhof | 2014-03-01 | 2 | -279/+325 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Two problems were encountered when installing on AzureSQL: -Azure SQL does not support the ON clause of T-SQL -Azure SQL requries a clustered index AKA primary key on all tables The fix is makeshift; it introduces questionable primary indices, which should be replaced with auto--increment columns. PHPBB3-9725 | ||||
* | | | Merge pull request #2192 from bantu/ticket/12314 | Nils Adermann | 2014-03-28 | 1 | -1/+7 |
|\ \ \ | | | | | | | | | [ticket/12314] Workaround HHVM SPL autoloader sometimes using leading ba... | ||||
| * | | | [ticket/12314] Workaround HHVM SPL autoloader sometimes using leading backslash | Andreas Fischer | 2014-03-28 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | PHPBB3-12314 | ||||
* | | | | Merge pull request #2194 from bantu/ticket/12317 | Nils Adermann | 2014-03-28 | 8 | -14/+9 |
|\ \ \ \ | | | | | | | | | | | [ticket/12317] Fix notification tests for DBMS drivers using int for integers ;-) | ||||
| * | | | | [ticket/12317] Cast string to int to refix DBMSes not using int for integers. | Andreas Fischer | 2014-03-28 | 4 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | PHPBB3-12317 | ||||
| * | | | | [ticket/12317] Fix notification tests for DBMSes returning integers as int. | Andreas Fischer | 2014-03-28 | 3 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | PHPBB3-12317 | ||||
| * | | | | [ticket/12317] Do not repeat SQL query in notification_submit_post_base. | Andreas Fischer | 2014-03-28 | 1 | -6/+1 |
| |/ / / | | | | | | | | | | | | | PHPBB3-12317 | ||||
* | | | | Merge remote-tracking branch 'crizz0/ticket/11336' into develop-ascraeus | Joas Schilling | 2014-03-28 | 6 | -6/+13 |
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | * crizz0/ticket/11336: [ticket/11336] Adds 301 info to redirect [ticket/11336] Adds redirect for old "leaders" mode [ticket/11336] Changes language variabel LOGIN_EXPLAIN_LEADERS to _TEAM [ticket/11336] Changes "leaders"-mode to "team"-mode and so in test-file | ||||
| * | | | [ticket/11336] Adds 301 info to redirect | Crizzo | 2014-03-28 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | PHPBB3-11336 | ||||
| * | | | [ticket/11336] Adds redirect for old "leaders" mode | Crizzo | 2014-03-28 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | PHPBB3-11336 | ||||
| * | | | [ticket/11336] Changes language variabel LOGIN_EXPLAIN_LEADERS to _TEAM | Crizzo | 2014-03-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | PHPBB3-11336 | ||||
| * | | | [ticket/11336] Changes "leaders"-mode to "team"-mode and so in test-file | Crizzo | 2014-03-28 | 5 | -5/+5 |
| | | | | | | | | | | | | | | | | PHPBB3-11336 | ||||
* | | | | Merge remote-tracking branch 'vsephpbb/ticket/12315' into develop-ascraeus | Joas Schilling | 2014-03-28 | 1 | -1/+1 |
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | * vsephpbb/ticket/12315: [ticket/12315] Fix invalid HTML in NO_SEARCH_INDEX in language/en/acp/common.php | ||||
| * | | | [ticket/12315] Fix invalid HTML in NO_SEARCH_INDEX in language/en/acp/common.php | Matt Friedman | 2014-03-28 | 1 | -1/+1 |
|/ / / | | | | | | | | | | PHPBB3-12315 | ||||
* | | | Merge branch 'ticket/suheb/11666' into develop-ascraeus | Joas Schilling | 2014-03-28 | 1 | -3/+3 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | * ticket/suheb/11666: [ticket/11666] Rewording POST_DELETED and [ticket/11666] Removing MESSAGE_DELETED.. | ||||
| * | | | [ticket/11666] Rewording POST_DELETED and | Suhaib Khan | 2014-03-28 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | reverting removal of MESSAGE_DELETED. PHPBB3-11666 | ||||
| * | | | [ticket/11666] Removing MESSAGE_DELETED.. | Suhaib Khan | 2014-03-10 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | ..in /en/posting.php as it is not used. PHPBB3-11666 | ||||
* | | | | Merge remote-tracking branch 'vsephpbb/ticket/12311' into develop-ascraeus | Joas Schilling | 2014-03-28 | 10 | -17/+17 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | * vsephpbb/ticket/12311: [ticket/12311] Use British-English spelling of licence in lang file [ticket/12311] Use valid composer schema - license - for extensions |