Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Fix character encoding issue with google accounts #40

Closed
wants to merge 1 commit into from
Closed
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
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ services:
environment:
- MYSQL_ROOT_PASSWORD=password12345
- MYSQL_DATABASE=first_db
command:
- --character-set-server=utf8
- --collation-server=utf8_general_ci
volumes:
- ./data/mysql:/var/lib/mysql
restart: always
2 changes: 1 addition & 1 deletion server/www/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class Migration(migrations.Migration):
('rank', models.BigIntegerField(default=0)),
('active', models.BooleanField(default=True)),
('service', models.CharField(max_length=16)),
('auth_data', models.CharField(max_length=32768)),
('auth_data', models.TextField()),
],
options={
'db_table': 'User',
Expand Down