diff options
author | Markus Hackspacher <hackspacher@gmx.de> | 2022-08-03 17:01:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 17:01:11 +0200 |
commit | 09569358dd8f9a0a52710779e1babc8441cbfa03 (patch) | |
tree | f2b72c3cfba25931ed0e212e084014db49187e01 | |
parent | 5f40b3feda4f09a0867f9363eef6dbd21f046caf (diff) | |
download | blog-09569358dd8f9a0a52710779e1babc8441cbfa03.tar.gz blog-09569358dd8f9a0a52710779e1babc8441cbfa03.tar.xz blog-09569358dd8f9a0a52710779e1babc8441cbfa03.zip |
SET NAMES 'utf8mb4'
with SET NAMES can you imort the file with the commandline: mysql -u root blog < core/db/database.sql
-rw-r--r-- | core/db/database.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/db/database.sql b/core/db/database.sql index af52c50..6e4c481 100644 --- a/core/db/database.sql +++ b/core/db/database.sql @@ -1,3 +1,4 @@ +SET NAMES 'utf8mb4' COLLATE 'utf8mb4_general_ci'; -- ============================================================================= -- Internal information table for migrations -- ============================================================================= |