From d937d0ccece4cb6bed981d143b20e33ce215bd01 Mon Sep 17 00:00:00 2001 From: Marcus Hill Date: Mon, 21 Mar 2022 21:05:08 +0000 Subject: [PATCH] Add fields for contact portal auth --- db.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db.sql b/db.sql index 37508235..a9cac9da 100644 --- a/db.sql +++ b/db.sql @@ -296,6 +296,8 @@ CREATE TABLE `contacts` ( `contact_mobile` varchar(200) DEFAULT NULL, `contact_photo` varchar(200) DEFAULT NULL, `contact_notes` text DEFAULT NULL, + `contact_auth_method` varchar(200) DEFAULT NULL, + `contact_password_hash` varchar(200) DEFAULT NULL, `contact_created_at` datetime NOT NULL, `contact_updated_at` datetime DEFAULT NULL, `contact_archived_at` datetime DEFAULT NULL,