We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52c14e1 commit 4b242a3Copy full SHA for 4b242a3
code/js-user-server-actions-sql-mysql_js
@@ -1,7 +1,7 @@
1
/*
2
CREATE TABLE app_user (
3
- id VARCHAR(0) COLLATE utf8mb4_bin PRIMARY KEY, -- TODO: set type (can be ascii)
4
- email_address VARCHAR(100) COLLATE utf8mb4_bin NOT NULL UNIQUE, -- can be ascii
+ id VARCHAR(0) COLLATE utf8mb4_bin PRIMARY KEY, -- TODO: set type (can be ascii), use binary collation
+ email_address VARCHAR(100) COLLATE utf8mb4_bin NOT NULL UNIQUE, -- NOTE: can be ascii, use binary collation
5
password_hash VARBINARY(255) NOT NULL,
6
password_salt VARBINARY(255) NOT NULL,
7
password_hash_algorithm_id VARCHAR(127) NOT NULL,
0 commit comments