mapguesser/database/migrations/structure/20200620_2113_google_login.sql

9 lines
204 B
MySQL
Raw Normal View History

2020-06-21 01:28:17 +02:00
ALTER TABLE
`users`
ADD
`google_sub` varchar(255) CHARACTER SET ascii COLLATE ascii_bin NULL DEFAULT NULL,
ADD
UNIQUE `google_sub` (`google_sub`),
MODIFY
`password` varchar(60) NULL DEFAULT NULL;