Custom Query (1173 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (223 - 225 of 1173)

Ticket Resolution Summary Owner Reporter
#526 fixed Provide a list of collections for site visitors Elrond thelovebug
Description

Currently there is no way of knowing what collections are available for site visitors to view.

Suggestion that on the user profile there is a sample of recently updated collections, with a link to the full list of collections. This is similar to the existing recently updated media, and a link to all media

#550 fixed Fix missing constraint in recent migrations Elrond Christopher Allan Webber
Description

A recent migration added a table for the CollectionItem model but didn't add the constraint of:

    __table_args__ = (
        UniqueConstraint('collection', 'media_entry'),
        {})

Since then we've moved to a new style of "creating models in migrations" which involves actually putting a copy of the original model inside the migrations file to make it easier to create the right database. However, anyone running from git master will currently pick up the "mistaken" commit.

There basically seem to be one of two possible solutions:

  • One, try to create a migration that's "smart"-ish. We can't check for constraints... sqlalchemy doesn't have support for that... but we could maybe try adding the constraint and just catch the exception if it isn't allowed?
  • That might not work though (and it does feel a bit "icky"). If it doesn't, we should simply correct the old migration and also create scripts that will add the constraint for people who may have picked up the bad migration from git master.
#611 fixed Account deletion does not delete the media entries Elrond joar
Description

When removing your account via your account settings page, the media files are deleted, but *not* the media entries themselves.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.