Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

services:
mysql:
image: mysql:8.0
image: mysql:8.4
env:
MYSQL_DATABASE: mixtio_test
MYSQL_ROOT_PASSWORD: root
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## Prerequisites

- Ruby 2.7.2
- MySQL 8.0
- MySQL 8.4
- Chrome (for testing)

## Installation
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/batches/support_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class Batches::SupportController < ApplicationController

def show
@batch_id = params[:id]
@support_url = Rail.configuration.support_url
@support_url = Rails.configuration.support_url
@support_email = Rails.configuration.support_email
end

Expand Down
2 changes: 2 additions & 0 deletions config/database.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
default: &default
adapter: mysql2
encoding: utf8mb4
collation: utf8mb4_unicode_ci
pool: 5
username: root
password:
Expand Down
Loading
Loading