[database] Add user.legacy_password field
This commit is contained in:
parent
986e22d9e1
commit
c53c2fffa5
3 changed files with 4 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
-- ------------------------------------------
|
||||
-- Friendica 3.6-dev (Asparagus)
|
||||
-- DB_UPDATE_VERSION 1243
|
||||
-- DB_UPDATE_VERSION 1244
|
||||
-- ------------------------------------------
|
||||
|
||||
|
||||
|
|
@ -1006,6 +1006,7 @@ CREATE TABLE IF NOT EXISTS `user` (
|
|||
`guid` varchar(64) NOT NULL DEFAULT '' COMMENT '',
|
||||
`username` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
`legacy_password` tinyint NOT NULL DEFAULT 0 COMMENT 'Is the password hash double-hashed?',
|
||||
`nickname` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
`email` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
`openid` varchar(255) NOT NULL DEFAULT '' COMMENT '',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue