ppy / osu-infrastructure

37 stars 5 forks source link

Investigate adding a new column for rankability of individual scores #26

Closed smoogipoo closed 6 months ago

smoogipoo commented 7 months ago

While we can control the rankability (i.e. for pp) of individual builds via the osu_builds flag, it may be worthwhile to also be able to control the rankability of individual scores.

For example, if we want to unrank only those scores set for a particular mod.

peppy commented 6 months ago

I've added this:

alter table scores add ranked tinyint(1) default 1 not null after preserve;

There are some other schema changes as well (mostly related to partitioning) so we should sync with osu-web schema at some point.