Email validation working

This commit is contained in:
2021-01-25 12:53:46 +11:00
parent 9cd57f17fa
commit 60cabd1936
8 changed files with 55 additions and 13 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ module.exports = sequelize.define('accounts', {
hash: 'varchar(100)', //for passwords
expiry: {
deletion: {
type: 'DATETIME',
allowNull: true,
defaultValue: null
+1 -1
View File
@@ -14,5 +14,5 @@ module.exports = sequelize.define('pendingSignups', {
hash: 'varchar(100)', //for passwords
verify: Sequelize.INTEGER(11)
token: Sequelize.INTEGER(11)
});