mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Added uuid column to members table
no-issue This will be used for unsubscribe links
This commit is contained in:
parent
45cd39c386
commit
389b034875
1 changed files with 1 additions and 0 deletions
|
@ -323,6 +323,7 @@ module.exports = {
|
|||
},
|
||||
members: {
|
||||
id: {type: 'string', maxlength: 24, nullable: false, primary: true},
|
||||
uuid: {type: 'string', maxlength: 36, nullable: true, unique: true, validations: {isUUID: true}},
|
||||
email: {type: 'string', maxlength: 191, nullable: false, unique: true, validations: {isEmail: true}},
|
||||
name: {type: 'string', maxlength: 191, nullable: true},
|
||||
note: {type: 'string', maxlength: 2000, nullable: true},
|
||||
|
|
Loading…
Add table
Reference in a new issue