summaryrefslogtreecommitdiff
path: root/db
AgeCommit message (Collapse)Author
2010-12-17Merge branch '0.9.x' into 1.0.xBrion Vibber
Conflicts: classes/Memcached_DataObject.php
2010-12-17Sort indexing fix for profile sidebar: add ↵Brion Vibber
group_member_profile_id_created_idx to group_member table, streamlines sorting of your group memberships in the sidebar
2010-12-17Sorting index fix for role lookups: adds ↵Brion Vibber
profile_role_role_created_profile_id_idx index on profile_role
2010-12-17Update sorting for conversation views: adds ↵Brion Vibber
notice_conversation_created_id_idx index on notice, replacing more limited notice_conversation_idx
2010-12-17Update sorting on api/statuses/retweets: adds ↵Brion Vibber
notice_repeat_of_created_id_idx index to replace notice_repeatof_idx
2010-12-17Update sorting for group inbox timelines; adds ↵Brion Vibber
group_inbox_group_id_created_notice_id_idx index to group_inbox table
2010-12-17Update sorting on reply/mentions timeline: added ↵Brion Vibber
reply_profile_id_modified_notice_id_idx index to reply table
2010-12-17Update sorting for tag-filtered public timeline: needs ↵Brion Vibber
notice_tag_tag_created_notice_id_idx index added to notice_tag
2010-12-17Switch public timeline to new sorting; new index notice_created_id_is_local_idxBrion Vibber
http://status.net/wiki/Sorting_changes
2010-12-07Merge branch '0.9.x' into mergeBrion Vibber
Conflicts: README actions/hostmeta.php classes/File_redirection.php lib/common.php lib/designsettings.php lib/router.php lib/util.php lib/xmppmanager.php plugins/OStatus/OStatusPlugin.php
2010-11-09session table was missing from upgrade scriptsEvan Prodromou
2010-10-29tweaks for the installer wheeBrion Vibber
2010-10-29some sorta vaguely working bitsBrion Vibber
2010-10-28Merge branch '1.0.x' into schema-xBrion Vibber
Conflicts: plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po
2010-10-28Merge branch '0.9.x' into 1.0.xBrion Vibber
2010-10-25Merge commit 'refs/merge-requests/2223' of ↵Zach Copley
git://gitorious.org/statusnet/mainline into integration
2010-10-25Updated mustard description and linkMichele macno Azzolari
2010-10-25Merge branch '1.0.x' into schema-xBrion Vibber
Conflicts: plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po
2010-10-25Merge branch '0.9.x' into 1.0.xBrion Vibber
Conflicts: actions/subscriptions.php lib/router.php lib/xmppmanager.php lib/xmppoutqueuehandler.php
2010-10-20Use a new table (oauth_token_association) to associate authorizedZach Copley
request tokins with OAuth client applications and profiles.
2010-10-20Revert DB change for OAuth. Change compound key for oauth_application_userZach Copley
back to (profile_id, application_id). I think we can get away without a DB change by only issuing one anonymous access token per user.
2010-10-19Add support for an anonymous OAuth consumer. Note: this requires aZach Copley
small DB tweak. Oauth_application_user needs to have the primary compound key: (profile_id, application_id, token). http://status.net/open-source/issues/2761 This should also make it possible to have multiple access tokens per application. http://status.net/open-source/issues/2788
2010-10-19Add stub schema_version tableBrion Vibber
2010-10-19Initial foreign key setup supportBrion Vibber
2010-10-19Fix unique & foreign constraints on foreign_* tables. Reference info copied ↵Brion Vibber
from old schema wasn't correctly taking into account that (id, service) must be treated together as a unit to identify a foreign_user uniquely.
2010-10-18Fix misnamed unique constraintBrion Vibber
2010-10-18Normalize the 'modified' vs 'created' field definitions to not-null ↵Brion Vibber
timestamps. We can't rely on database DEFAULT or ON UPDATE values, since they don't play well with our insert-time caching.
2010-10-15some more tweaking to do the mappings during filterDef; not totally sure I ↵Brion Vibber
like it
2010-10-13Cleanup unique & foreign key defsBrion Vibber
2010-10-11fix for column prefixes in table/index buildingBrion Vibber
2010-10-07fix up some more 'not null's and suchBrion Vibber
2010-10-07some more cleanup on table defsBrion Vibber
2010-10-07output tweak hack for primary keys on single lineBrion Vibber
2010-10-07Finish patching up the index fetching in new schema stuff for mysqlBrion Vibber
2010-10-06Merge branch '1.0.x' into schema-xBrion Vibber
Conflicts: plugins/OStatus/classes/Ostatus_profile.php
2010-10-04Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.xBrion Vibber
Conflicts: actions/hostmeta.php actions/imsettings.php classes/User.php lib/adminpanelaction.php lib/channel.php lib/default.php lib/router.php lib/util.php
2010-09-16Ticket #2725 - add StatusNet Mobile & platform variants to default notice ↵Brion Vibber
sources lists. To add just these to an existing table: INSERT INTO notice_source (code, name, url, created) VALUES ('StatusNet Mobile', 'StatusNet Mobile', 'http://status.net/mobile', now()), ('StatusNet iPhone', 'iPhone', 'http://status.net/iphone', now()), ('StatusNet Android', 'Android', 'http://status.net/android', now()), ('StatusNet Blackberry', 'Blackberry', 'http://status.net/blackberry', now());
2010-08-16Merge branch '0.9.x' into 1.0.xBrion Vibber
2010-08-16Managed_DataObject initial sketches (pulling Drupal-style schema def into ↵Brion Vibber
the data that DB_DataObject and Memcached_DataObject use; not yet functional. Converted OStatus_profile for demo.)
2010-08-16Syntax fixes to defs fileBrion Vibber
2010-08-16Merge remote branch 'shiny/0.9.x' into 0.9.xBrenda Wallace
2010-08-16Merge commit 'origin/0.9.x' into 0.9.xBrenda Wallace
2010-08-16removed the notice.location column from postgres def -- snuck in on a git ↵Brenda Wallace
commit by Patrick G
2010-08-13work in progressBrion Vibber
2010-08-13starting redoing core schema defs in variant of drupal format (can switch it ↵Brion Vibber
to any way we like once done, if prefer to use a different syntax based on what we're using now for plugins)
2010-08-03Merge branch '0.9.x' into 1.0.xEvan Prodromou
2010-07-28SQL script to update status_network tableJames Walker
2010-07-28leaving tags column in (for now)James Walker
2010-07-20normalizing tags for status_networkJames Walker
2010-06-28Merge branch 'master' into 0.9.xBrion Vibber