aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update
Commit message (Collapse)AuthorAgeFilesLines
...
* missing update fileMario2020-01-181-0/+25
|
* remove the caldav and event app and make calendar the default appMario Vavti2019-05-091-0/+26
|
* another DB update to fix uid_mid index in item table and add xchan_photo_m ↵Mario Vavti2019-05-081-0/+38
| | | | index to xchan table
* Channel updateMario2019-05-081-0/+47
|
* mysql: remove some unused indices and add thr_parent index. pgsql: sync ↵Mario Vavti2019-03-191-0/+73
| | | | indices with mysql indices after testing on hub.disroot.org and add thr_parent
* fix default values for affinity tool and other information which could be ↵zotlabs2018-12-171-0/+12
| | | | lost when approving a connection without the entire form provided by connedit.
* Update database with expires field for photoMax Kostikov2018-11-291-0/+32
|
* fix db upgrade 1228 for postgresMario2018-11-221-2/+2
|
* fix update 1228Mario Vavti2018-11-151-1/+0
|
* db updates for zot6zotlabs2018-11-143-0/+145
|
* DB Updates to prep for pconfig timestamps.M.Dent2018-10-281-0/+26
|
* return success for postgresMario Vavti2018-10-061-8/+11
|
* fix issue #1281 - hubloc default valuesMario Vavti2018-10-061-0/+25
|
* another db update to get rid of the old view bookmarks entriesMario Vavti2018-10-061-0/+23
|
* this did not actually make senseMario Vavti2018-10-061-5/+0
|
* rename grid to network (for consistency) and activity to stream (as seen in ↵Mario Vavti2018-10-061-0/+28
| | | | osada) because it makes much more sense.
* add transaction, commit and rollback to update 1221Mario2018-09-281-0/+5
|
* rename groups and group_members tables for MySQL 8 compatibilityMax Kostikov2018-09-271-0/+20
|
* fix listeners table create and expire federation had a syntax errorzotlabs2018-09-171-4/+4
|
* important hyperdrive componentzotlabs2018-09-091-0/+47
|
* update 1218: missing default value for pgMario Vavti2018-08-311-2/+2
|
* db update to get rid of bogus activitypub xchans which got created due to a ↵Mario Vavti2018-08-291-0/+26
| | | | bug in the pubcrawl addon
* hubloc DB changes needed for z6zotlabs2018-08-131-0/+31
|
* add app_options fieldzotlabs2018-08-021-0/+22
|
* this may conflictzotlabs2018-07-291-2/+2
|
* fix unsanitised xchan_namezotlabs2018-07-281-0/+19
|
* DB update to fix wrong hubloc_url for activitypub hublocsMario Vavti2018-05-261-0/+26
|
* update oauth related tables to use bigint/int(10) for user_id column. this ↵Mario2018-05-201-0/+57
| | | | is to be more consistent with the rest of the tables and fixes issue #1180
* improve abconfig queriesMario Vavti2018-05-201-0/+28
|
* fix another pgsql update errorMario2018-04-301-1/+1
|
* Update issues on postgreszotlabs2018-04-293-3/+3
|
* fix any misconfigured channel permission limitszotlabs2018-04-201-0/+26
|
* missing update file in the previous update commitzotlabs2018-04-161-0/+26
|
* OAuth2 integrationzotlabs2018-04-031-0/+78
|
* fix syntax error in postgres updateMario2018-03-081-3/+3
|
* federated polls: GNU-Social requires us to preserve the original order of ↵zotlabs2018-03-071-0/+26
| | | | the poll answers for use in making a vote, unlike diaspora (which selects by guid) and activitypub (which selects by non-localisable text).
* federated polls: add poll_author which will be necessary for Diaspora federationzotlabs2018-03-061-0/+26
|
* update DB update 1205 to mitigateMario Vavti2018-03-021-0/+11
| | | | ERROR 1069 (42000): Too many keys specified; max 64 keys allowed
* db update to drop index resource_type. we have uid_resource_type now.Mario Vavti2018-03-021-0/+24
|
* typoMario Vavti2018-02-281-1/+1
|
* missed one index in the last updateMario Vavti2018-02-281-0/+24
|
* another DB upgrade to address some long running maintenance queriesMario Vavti2018-02-261-0/+27
|
* fix issues with DB update 1204Mario Vavti2018-02-231-3/+3
|
* provide DB compatibility for poll and voting implementations across several ↵zotlabs2018-02-221-0/+34
| | | | platforms
* missing fileMario Vavti2018-02-201-0/+29
|
* updates 1201 and 1200 should return success for postgres. notifications: ↵Mario Vavti2018-02-193-8/+16
| | | | remove class show and session storage entry when we mark all notifications seen
* backport update 1201 to the new update system and move dummy update to 1202Mario Vavti2018-02-192-5/+28
|
* refactor of the DB update system. Updates are now stored individually in ↵zotlabs2018-02-16202-0/+4496
Zotlabs/Update/_nnnn.php and are objects; so only the pending updates need to be loaded and executed rather than all historical updates. There is one single number (DB_UPDATE_VERSION) representing the current version and it is EQUAL TO the last known update. A dummy update _1201 was created to address the difference in counting behaviour; it will be executed on the next change of DB_UPDATE_VERSION as well as the next update. The database config values are also loaded from disk on every update immediately before setting the update lock in order to reduce timing conflicts and race conditions.