summaryrefslogtreecommitdiff
path: root/database/database.mysql
Commit message (Collapse)AuthorAge
* - Patch #40532 by wtanaka: use longblog for data in the cache. Is reported ↵Dries Buytaert2005-12-13
| | | | to fix utf-8 problems and improves consistency with PostgreSQL.
* - Patch #40341 by Neil: fixed problems with database schema versions.Dries Buytaert2005-12-08
| | | | | | | - When user #1 creates an account (we can assume this happens only once), system.module's schema version is set to the latest availiable. - system_get_files_database() now includes a 'schema_version' child of each file object. - That new information is re-saved when Drupal re-populates the system table. - An array of newly-enabled modules is built, module_list() is reloaded, and the schema versions of each newly-enabled module are set to the most recent availiable. If the schema version is already set (presumably from a previous installation) it is not changed.
* - Patch #29326 by Morbus: optimized performance of URL aliasing for newly ↵Dries Buytaert2005-12-07
| | | | | | installed sites. There are a number of small optimizations we could add; like, we should never do more lookup queries than the number of unique URL aliases in the database. When the size of the static cache equals the number of unique URL aliases in the database, we can stop doing lookups. I think this could be implemented with a 2-line change. Takers?
* - Patch #40139 by Robert: the system table got a new column, the database ↵Dries Buytaert2005-12-06
| | | | definition files need to reflect this.
* - Patch #35924 by Neil: improved the update system.Dries Buytaert2005-12-06
|
* - Patch #40016 by Thox: profile tables do not default to MyISAM.Dries Buytaert2005-12-05
|
* - Patch #36133 by Thox: make it possible to install Drupal on MySQL, running ↵Dries Buytaert2005-11-29
| | | | in strict mode.
* - Patch #28062 by Souvent22: make it possible to assign weights to contact ↵Dries Buytaert2005-11-14
| | | | form categories and fixed some small glitches.
* - Patch #27140 by m3averck/souvent22: can't delete contact module subjects ↵Dries Buytaert2005-11-05
| | | | with '&' in title.
* - Patch #22215 by Richard Archer: refactored primary and secondary links.Dries Buytaert2005-11-03
| | | | | | | | | Deprecates the primary_links module. This patch was much needed. Thanks Richards! NOTE: if some themers could investigate if there is room for improvement with regard to theming, that would be awesome.
* - #28159: Advanced search features (hello from DrupalCon)Steven Wittens2005-10-18
| | | | | Presentation about it: http://www.acko.net/files/drupal-search-slim.pdf
* - Modified patch #30775 by timcn, Souvent22, m3avrck: give file uploads ↵Dries Buytaert2005-09-27
| | | | | | descriptions. (Modified the form a bit.)
* - Patch #31449 by chx: store session IDs in the accesslog table.Dries Buytaert2005-09-18
|
* - Patch #31343 by Robert Douglas et al: fixed database table problem with ↵Dries Buytaert2005-09-18
| | | | forum table.
* - Patch #30801 by Allie Micka, m3avrck, 1uv4t4r et al: fixed block problems.Dries Buytaert2005-09-14
|
* - Patch #30801 by Allie Micka and m3avrck: performance improvements: ↵Dries Buytaert2005-09-12
| | | | improved the database scheme and queries of the block.module.
* - Patch #7582 by Gerhard: improved node revisions!Dries Buytaert2005-08-30
| | | | | | | | | | All node revisions were stored in a serialized field in the node table and retrieved for _each_ page view although they are rarely needed. We created a separate revisions table which would be in principle identical to the node table, only that it could have several old copies of the same node. This also allows us to revision-related information, and to provide log entries to non-book pages when a new revision is being created. TODO: 1. Provide upgrade instructions for node module maintainers! 2. Upgrade modules that implement node types. 3. Provide an upgarde path for revisions. Dependency on the upgrade system.
* - Patch #16216 by nedjo: multiple block regions!Dries Buytaert2005-08-16
|
* - #27985: make node type column biggerSteven Wittens2005-08-08
|
* - Patch #27633 by Tobias:Dries Buytaert2005-07-31
| | | | | + made it possible to specify a subject when submitting a message on the contact form. + fixed some bugs/glitches.
* - #17116: Standardize whitespace in database.sqlSteven Wittens2005-07-29
|
* - #23651: Display referrer info with watchdog messages.Steven Wittens2005-07-29
|
* - Patch #24003 by Steven: fix problems with node attribute checking (and ↵Dries Buytaert2005-06-06
| | | | improve defaults).
* - Patch by Mathias: database updates for path alias improvements.Dries Buytaert2005-05-14
|
* - Added the ability to track page generation times in the statistics module.Dries Buytaert2005-05-12
| | | | | | (Made some improvements as per the suggestions in the issue.) - Added extended timer implementation.
* - Patch #22531 by Morbus: the CHANGELOG for Drupal 4.5 claims that a URL ↵Dries Buytaert2005-05-10
| | | | alias of "rss.xml" for "node/feed" was added. This ONLY occurs in updates.inc however - if people grab a fresh 4.5 (or now, 4.6), they are never going to get this added alias. The attached patch adds this INSERT into the default database.* files, adds another update into the updates.inc (so that those who started with a fresh 4.5 or 4.6 will get it via update.php the next time around) and fixes some minor whitespace/style inconsistencies.
* - Patch #22319 by Ber: updated default database schems not to use Xtemplate ↵Dries Buytaert2005-05-08
| | | | any more.
* - User module improvements: added an 'access' column to the users-table toDries Buytaert2005-05-07
| | | | | | | | | | | | | keep track of the user's last access. In turn, this allowed me to: 1. Optimize the "Who's online" block. On drupal.org, the "Who's online" block requires 32 SQL queries. With this patch, only 2 queries are left (eliminated 30 SQL queries), and one of the two remaining queries became appr. 20 times faster. 2. Correct the "Last access" column in the user administration overview table. The presented data was not accurate, which led to the column being removed. You can now sort users by 'last access'.
* - Patch #21252 by patryk: fixed size of location field.Dries Buytaert2005-05-03
|
* - Patch #21252 by patryk: increased the length of the location field in the ↵Dries Buytaert2005-05-01
| | | | locale_sources table.
* - Patch #21353 by chx: implemented PHP-mode for blocks.Dries Buytaert2005-04-30
|
* - Moving the queue module to contrib. This has been discussed months ago. ↵Dries Buytaert2005-04-24
| | | | Who wants to be the maintainer?
* - Patch #18719 by Jose: reworked the 'request new password' functionality.Dries Buytaert2005-04-24
|
* - Work by chx and myself: added a site-wide contact form to the contact module.Dries Buytaert2005-04-24
|
* - Patch #19965 by Robin Monks: fixed problem with duplicate block titles.Dries Buytaert2005-04-12
|
* - Patch #19298 by Jeremy: loose caching!Dries Buytaert2005-04-11
| | | | | | Drupal's existing caching mechanism doesn't perform well on highly dynamic websites in which the cache is flushed frequently. One example is a site that is under attack by a spambot that is posting spam comments every few seconds, causing all cached pages to be flushed every few seconds. Loose caching immediately flushes the cache only for specific users who have modified cached data (whether or not they are logged in), delaying the flushing of data for other users by several minutes. (I rewrote the help text a bit and made minor changes to the code comments.)
* - Patch #19697 by Morbus: FOLKSONOMY.Dries Buytaert2005-04-08
| | | | | | | | | | | This patch adds folksonomy support to Drupal (named internally as "Free tagging"). In a nutshell, the core difference is the input method: unlike normal taxonomies which are administratively controlled, a "free tagging" vocabulary allows tag creation when the node is submitted. It does this through an text input box, as opposed to a dropdown or selectbox. This patch: * Removes the useless "Preview form" of a vocabulary. * Alters the vocabulary table to include a new "tags" column. * Adds a new "Free tagging" preference on vocabulary creation/editing. * Modifies the vocabulary overview to support pagers for free tagging vocabs. The new code integrates tightly with the existing taxonomy code. The only additional processing occurs on node save and edit, where we parse through the tags associated with a node. All other display (and thus, code) remains the same.
* - Updated the start date of the updates.Dries Buytaert2005-03-23
|
* - Patch by Matt and chx: improved performance of taxonomy queries. When manyDries Buytaert2005-03-23
| | | | terms are matched, the query would become very slow.
* - Bug #18597: updated the database scheme. Renamed poll.voters to poll.polled.Dries Buytaert2005-03-20
|
* - Patch #12497 by Morbus: Just working on a profile reporting idea and ↵Dries Buytaert2005-03-16
| | | | | | | | | spotted that the following fields appear to have incorrect type definitions: profile_values.fid = int(11) profile_values.uid = int(11) These both appear inconsistant with the rest of the database (that I have seen i.e. user tables) where they are defined as int(10). The profile_fields.fid is defined as int(10) also.
* - Patch #17687 by Gerhard: removed some cruft.Dries Buytaert2005-02-21
|
* - Patch #11366 by Junyor: fixed twin comment problem in HEAD.Dries Buytaert2005-02-11
|
* - Patch #10425 by ccourtne and walkah: added admin screens to maintain ↵Dries Buytaert2005-01-28
| | | | forums instead of forcing the user to add a taxonomy.
* - Patch #16074 by Andre Molnar: add configuration option to show blocks only ↵Dries Buytaert2005-01-27
| | | | on pages of certain node type.
* - Patch #6847 by Gerhard: replaced vocabulary->nodes by a separate table and ↵Dries Buytaert2005-01-19
| | | | tidied up the taxonomy API a bit. This fixes a number of issues.
* Remove left-overs from admin.module.Steven Wittens2005-01-14
|
* - Patch #15337 by Gerhard: fixed a broken date query in the database scheme.Dries Buytaert2005-01-09
|
* - Refactored the queue module: removed the queue module's field from the ↵Dries Buytaert2004-12-07
| | | | | | | | | | node table. With help from Gerhard. - Slight addition to INSTALL.txt with regard to PHP versions. - Updated/reworded some node type descriptions as per Boris' suggestions. - Adding missing {} around a table name in update.php.
* - Changed aid from tinyint to int.Dries Buytaert2004-11-28
|