Skip to content

Commit

Permalink
Switch from utf8 to utf8mb4
Browse files Browse the repository at this point in the history
  • Loading branch information
Marián Černý committed Jul 21, 2017
1 parent 1a5e04c commit 070f702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/create.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CREATE TABLE `sessions` (
`id` char(32) CHARSET 'ascii' NOT NULL,
`timestamp` int unsigned NOT NULL,
`data` longtext NOT NULL,
`data` longtext CHARSET 'utf8mb4' NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
) ENGINE=InnoDB;

0 comments on commit 070f702

Please sign in to comment.