1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

Fixes #1101: Extend email column length to 256 characters (Postgres) (#1192)

This commit is contained in:
Daniel James Smith
2021-03-12 20:28:30 +01:00
committed by GitHub
parent 39f9f15bd4
commit 0f7e8dc806
5 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
CREATE TABLE "user" (
id UUID NOT NULL,
name VARCHAR (50) NULL,
email VARCHAR (50) NOT NULL,
email VARCHAR (256) NOT NULL,
email_verified BOOLEAN NOT NULL,
master_password VARCHAR (300) NOT NULL,
master_password_hint VARCHAR (50) NULL,