aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_mysql.sql
Commit message (Collapse)AuthorAgeFilesLines
* schema support for additional site typesredmatrix2015-09-281-1/+3
|
* add vdata field for caldavredmatrix2015-09-231-0/+1
|
* heavy lifting for delivery reportsredmatrix2015-09-221-0/+2
|
* DB table for delivery reportsredmatrix2015-09-181-0/+17
|
* add timestamps for syncing appsredmatrix2015-09-021-1/+5
|
* separate objs/things from taxonomyredmatrix2015-09-011-0/+10
|
* Merge https://github.com/redmatrix/redmatrix into pending_mergeredmatrix2015-08-311-0/+2
|\ | | | | | | | | | | | | | | Conflicts: include/identity.php install/update.php util/messages.po view/nl/messages.po
| * change the likes db structure to make it more easily importable/exportableredmatrix2015-08-311-0/+2
| |
* | Merge https://github.com/redmatrix/redmatrix into pending_mergeredmatrix2015-08-201-1/+3
|\|
| * missed this one - it's requiredredmatrix2015-08-201-1/+3
| |
* | Merge https://github.com/redmatrix/redmatrix into pending_mergeredmatrix2015-08-181-1/+3
|\|
| * add event_sequence for vtodo'sredmatrix2015-08-181-1/+3
| |
* | Merge https://github.com/redmatrix/redmatrix into pending_mergeredmatrix2015-08-161-1/+6
|\|
| * add DB support for tasks, todo items and repeating eventsredmatrix2015-08-161-1/+6
| |
* | Merge branch 'master' of https://github.com/redmatrix/redmatrixredmatrix2015-06-291-0/+1
|\| | | | | | | | | | | Conflicts: view/nl/messages.po view/nl/strings.php
* | Merge branch 'master' of https://github.com/redmatrix/redmatrixredmatrix2015-06-281-0/+2
|\| | | | | | | | | | | | | Conflicts: include/zot.php mod/connedit.php util/messages.po
| * no this isn't it. well ok, it's part of it, but not the important part. it's ↵redmatrix2015-06-281-0/+2
| | | | | | | | still pretty cool.
* | DB changes for some channel flagsredmatrix2015-06-151-0/+4
| |
* | start on the DAV/photos mergerredmatrix2015-06-111-0/+2
| |
* | more work on item table optimisationredmatrix2015-06-101-0/+8
| |
* | Merge branch 'master' of https://github.com/redmatrix/redmatrixredmatrix2015-06-091-2/+4
|\| | | | | | | | | | | | | | | | | Conflicts: install/schema_mysql.sql mod/home.php mod/page.php view/nl/messages.po view/nl/strings.php
| * add site_dead flag to prevent delivery to dead sites. Allow sys channel ↵redmatrix2015-06-081-1/+3
| | | | | | | | webpages to be viewed even if site is configured "block public".
* | Merge branch 'master' of https://github.com/redmatrix/redmatrixredmatrix2015-05-281-2/+6
|\| | | | | | | | | | | | | | | Conflicts: install/schema_mysql.sql mod/impel.php view/pt-br/messages.po view/pt-br/strings.php
| * add menu_created, menu_edited fields to DBredmatrix2015-05-281-1/+5
| |
* | more db structureredmatrix2015-05-191-6/+31
| |
* | bring the new photo schema into playredmatrix2015-05-181-2/+2
| |
* | here's a fair chunk of the new schema - still a lot of bits missing and no ↵redmatrix2015-05-171-414/+107
| | | | | | | | migration tools, and only for mysql currently. Oh, and you still don't have the new code to make use of the new schema yet. That's on another branch that I'm not checking in yet because then you might get the idea that bits of it actually work and infect the rest of the matrix with unstable code and bring other sites down that have never even heard of hubzilla. Please do not use this code. Let me repeat, please do not use this code. One more time in case you didn't understand - please do not use this code.
* | convert ITEM_WALL from bitfield to standaloneredmatrix2015-05-061-0/+3
|/
* add channel_lastpost timestamp to help optimise some outrageously expensive ↵friendica2015-03-261-0/+2
| | | | queries.
* mysql schema typo, do the install check for store before chcking smarty, as ↵friendica2015-03-151-1/+1
| | | | that is where the dir is created, change install doc to point to install/schema_xxxxx.sql instead of database.sql
* sql optimisation for affinity searches. A new index was added which wasn't ↵friendica2015-03-101-1/+2
| | | | added retro-actively to existing DBs as an update. It isn't clear if this helps sites any more than just restricting the abook table to certain channel_id's is (and this field is already indexed).
* add queue priorityfriendica2015-03-041-1/+3
|
* require access token to view, query, or join directories in private realms, ↵friendica2015-02-241-1/+3
| | | | if the realm is so configured.
* provide relief to sites that are severely impacted by the slow ITEM_UNSEEN ↵friendica2015-02-121-0/+2
| | | | searches. This does not incorporate any other flag optimisations as that will require a major DB update and possibly involve significant downtime. This is just to bite off a little chunk now and provide some much needed relief.
* two tracks proceeding in parallel - first adding the ability to store a ↵friendica2015-02-011-0/+1
| | | | digital signature with ratings so that directories can pass them around, second provide some directory registration functions so we can obtain a list of directories from somewhere (to pass ratings around between them). This gives the primary directory role some value as that is where you register your directory.
* provide storage for directory based reputation in the xlink table by setting ↵friendica2015-01-261-1/+3
| | | | xlink_static = 1, so that xlink_static = 0 is traditional poco linkages
* add db update 1131/1132 to database schemaszottel2015-01-231-0/+2
|
* oauth permissions tablefriendica2015-01-191-0/+16
|
* Merge remote-tracking branch 'upstream/master'Habeas Codice2014-11-131-190/+553
| | | | | | | | | | | | Conflicts: boot.php include/dba/dba_driver.php include/diaspora.php include/follow.php include/session.php include/zot.php mod/photos.php mod/ping.php
* PostgreSQL support initial commitHabeas Codice2014-11-131-0/+1228
There were 11 main types of changes: - UPDATE's and DELETE's sometimes had LIMIT 1 at the end of them. This is not only non-compliant but it would certainly not do what whoever wrote it thought it would. It is likely this mistake was just copied from Friendica. All of these instances, the LIMIT 1 was simply removed. - Bitwise operations (and even some non-zero int checks) erroneously rely on MySQL implicit integer-boolean conversion in the WHERE clauses. This is non-compliant (and bad programming practice to boot). Proper explicit boolean conversions were added. New queries should use proper conventions. - MySQL has a different operator for bitwise XOR than postgres. Rather than add yet another dba_ func, I converted them to "& ~" ("AND NOT") when turning off, and "|" ("OR") when turning on. There were no true toggles (XOR). New queries should refrain from using XOR when not necessary. - There are several fields which the schema has marked as NOT NULL, but the inserts don't specify them. The reason this works is because mysql totally ignores the constraint and adds an empty text default automatically. Again, non-compliant, obviously. In these cases a default of empty text was added. - Several statements rely on a non-standard MySQL feature (http://dev.mysql.com/doc/refman/5.5/en/group-by-handling.html). These queries can all be rewritten to be standards compliant. Interestingly enough, the newly rewritten standards compliant queries run a zillion times faster, even on MySQL. - A couple of function/operator name translations were needed (RAND/RANDOM, GROUP_CONCAT/STRING_AGG, UTC_NOW, REGEXP/~, ^/#) -- assist functions added in the dba_ - INTERVALs: postgres requires quotes around the value, mysql requires that there are not quotes around the value -- assist functions added in the dba_ - NULL_DATE's -- Postgres does not allow the invalid date '0000-00-00 00:00:00' (there is no such thing as year 0 or month 0 or day 0). We use '0001-01-01 00:00:00' for postgres. Conversions are handled in Zot/item packets automagically by quoting all dates with dbescdate(). - char(##) specifications in the schema creates fields with blank spaces that aren't trimmed in the code. MySQL apparently treats char(##) as varchar(##), again, non-compliant. Since postgres works better with text fields anyway, this ball of bugs was simply side-stepped by using 'text' datatype for all text fields in the postgres schema. varchar was used in a couple of places where it actually seemed appropriate (size constraint), but without rigorously vetting that all of the PHP code actually validates data, new bugs might come out from under the rug. - postgres doesn't store nul bytes and a few other non-printables in text fields, even when quoted. bytea fields were used when storing binary data (photo.data, attach.data). A new dbescbin() function was added to handle this transparently. - postgres does not support LIMIT #,# syntax. All databases support LIMIT # OFFSET # syntax. Statements were updated to be standard. These changes require corresponding changes in the coding standards. Please review those before adding any code going forward. Still on my TODO list: - remove quotes from non-reserved identifiers and make reserved identifiers use dba func for quoting - Rewrite search queries for better results (both MySQL and Postgres)