Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add migration for creating bss_process_queue table #9169

Merged
merged 2 commits into from Aug 5, 2022

Conversation

frenzibyte
Copy link
Member

Migration done as per the table creation showcase that was posted in the thread:

CREATE TABLE `bss_process_queue` (
  `queue_id` int unsigned NOT NULL AUTO_INCREMENT,
  `beatmapset_id` int unsigned NOT NULL,
  `start_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`queue_id`),
  KEY `status` (`status`),
  KEY `beatmapset_id` (`beatmapset_id`)
) ENGINE=InnoDB

@nanaya nanaya enabled auto-merge August 5, 2022 09:35
@nanaya nanaya merged commit 659b371 into ppy:master Aug 5, 2022
@frenzibyte frenzibyte deleted the bss-process-queue-migration branch August 5, 2022 10:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Database migration missing for table bss_process_queue
3 participants