feat(modules): add npwd support

This commit is contained in:
Csoki
2023-01-22 13:02:06 +01:00
parent 91f854cd76
commit d6fe06d9f5
4 changed files with 113 additions and 11 deletions
+2 -1
View File
@@ -402,7 +402,8 @@ CREATE TABLE `users` (
`disabled` TINYINT(1) NULL DEFAULT '0',
`last_property` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`last_seen` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP
`last_seen` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`phone_number` VARCHAR(20) DEFAULT NULL
) ENGINE=InnoDB;
-- --------------------------------------------------------